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

{{ $title }}

Account Information

Full Name

{{ $user->name }}

Last Login

{{ formatDateTime($user->last_login_at) }}

Email

{{ $user->email }}

Phone

{{ $user->phone ?? 'Not provided' }}

Country

{{ $user->country ?? '—' }}

State, City, Zip

{{ ($user->state ?? '—') . ', ' . ($user->city ?? '—') . ', ' . ($user->zip_code ?? '—') }}

Address

{{ $user->address ?? '—' }}

Register Date

{{ formatDateTime($user->created_at) }}


Account Details :

{{ currency($user->currency) }}{{ formatAmount($user->balance) }}

Balance

{{ currency($user->currency) }}{{ formatAmount($user->demo_balance) }}

Demo Balance

{{ currency($user->currency, 'code') }}

Account Currency


Account Preferences :

{{ $user->account_type->label() }}

Account Type

{{ $user->two_factor_enabled->label() }}

2FA Security

{{ $user->status->label() }}

Account Status

{{ $user->account_mode->label() }}

Account Mode


KYC Information :

{{ $user->kyc_status->label() }}

KYC Status

{{ $user->id_type ? $user->id_type->label() : 'Not Uploaded' }}

ID Type

@if (@$user->id_front) View Front @else Not Uploaded @endif

ID Front

@if (@$user->id_back) View Back @else Not Uploaded @endif

ID Back

{{--

API Keys :

{{ $user->api_key }}

API Key

{{ $user->secret_key }}

Secret Key

--}}

API Keys

Keep these keys secure. Do not share them publicly.

@endsection