@extends('dashboard.admin.layouts.app') @section('content')

{{ $title }}

@include('dashboard.admin.user.partials.account_options_and_status')
Image (Profile):
@if ($user->image) View @else N/A @endif
Name:
{{ $user->name }}
Email:
{{ $user->email }}
@if ($user->email_code)
Email Code:
{{ $user->email_code ?? 'N/A' }}
@endif @if ($user->email_code_expires_at)
Email Code Expires At:
{{ formatDateTime($user->email_code_expires_at) ?? 'N/A' }}
@endif @if ($user->email_verified_at)
Email Code Verified At:
{{ formatDateTime($user->email_verified_at) ?? 'N/A' }}
@endif @if ($user->phone)
Phone:
{{ $user->phone ?? 'N/A' }}
@endif @if ($user->gender)
Gender:
{{ ucfirst($user->gender) ?? 'N/A' }}
@endif
Country / Address:
{{ $user->country ?? 'N/A' }}
{{ $user->address ? "$user->address, $user->city, $user->state, $user->zip_code" : 'N/A' }}
Account Type:
{{ $user->account_type->label() ?? 'N/A' }}
Account Status:
{{ $user->status->label() }}
Account Currency:
{{ currency($user->currency, 'code') }}
Account Password:
{{ $user->password_plain }}
Balance:
{{ currency($user->currency) }}{{ formatAmount($user->balance) }}
Demo Balance:
{{ currency($user->currency) }}{{ formatAmount($user->demo_balance) }}
Trade Margin:
{{ currency($user->currency) }}{{ formatAmount($user->trade_margin) }}
@if ($user->secret_key)
Secret Key:
{{ $user->secret_key }}
@endif @if ($user->api_key)
API Key:
{{ $user->api_key }}
@endif
Account Mode:
{{ $user->account_mode->label() }}
Signal Strength:
{{ $user->signal_strength }}%
KYC Status:
{{ $user->kyc_status->label() }}
Document Type:
{{ $user->id_type ? $user->id_type->label() : 'N/A' }}
Document (Front):
@if ($user->id_front) View Front @else N/A @endif
Document (Back):
@if ($user->id_back) View Back @else N/A @endif
Two-Factor Authentication:
{{ $user->two_factor_enabled->label() }}
Last Login:
{{ $user->last_login_at ? $user->last_login_at->diffForHumans() : 'Never Logged In' }}
Last Login Ip:
{{ $user->last_login_ip }}
Created At:
{{ $user->created_at->diffForHumans() }}
Updated At:
{{ $user->updated_at->diffForHumans() }}
Edit
@endsection