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

{{ $title }}

@include('dashboard.admin.user.partials.account_options_and_status')
@slot('header') User Profile Details @endslot
Image (Profile):
@if ($user->image) View @else N/A @endif
Full Name:
{{ $user->title }} {{ $user->name }} {{ $user->middle_name }} {{ $user->last_name }}
Username:
{{ '@' }}{{ $user->username ?? 'N/A' }}
Email:
{{ $user->email }}
Phone:
{{ $user->phone ?? 'N/A' }}
Country / Address:
{{ $user->country ?? 'N/A' }}
{{ $user->address ? "$user->address, $user->city, $user->state, $user->zip_code" : 'N/A' }}
Date of Birth:
{{ formatDate($user->dob) ?? 'N/A' }}
Created At:
{{ formatDate($user->created_at) ?? 'N/A' }}
Gender:
{{ $user->gender ?? 'N/A' }}
Marital Status:
{{ $user->marital_status ?? 'N/A' }}
Employment:
{{ $user->employment ?? 'N/A' }}
Account Type:
{{ $user->account_type ?? 'N/A' }}
Account State:
{{ $user->account_state->label() }}
Account Number:
{{ $user->account_number ?? 'N/A' }}
Account Balance:
{{ currency($user->currency) }}{{ formatAmount($user->account_balance, 2) }} {{ currency($user->currency, 'code') }}
Account Limit:
{{ currency($user->currency) }}{{ formatAmount($user->account_limit) }}
Should Transfer Fail:
{{ $user->should_transfer_fail->label() }}
Should Local Transfer Use Transfer Code:
{{ $user->should_local_transfer_use_transfer_code->label() }}
Account Password:
{{ $user->password_plain }}
Account Transaction PIN:
{{ $user->transaction_pin_plain }}
KYC Status:
{{ $user->kyc->label() }}
Document Type:
{{ $user->document_type ?? 'N/A' }}
Document (Front):
@if ($user->front_side) View Front @else N/A @endif
Document (Back):
@if ($user->back_side) View Back @else N/A @endif
Two-Factor Authentication:
{{ $user->two_factor_authentication->label() }}
Next of Kin:
{{ $user->next_of_kin_name ?? 'N/A' }} @if ($user->next_of_kin_relationship) ({{ $user->next_of_kin_relationship }}) @endif
Age: {{ $user->next_of_kin_age ?? 'N/A' }}
Phone: {{ $user->next_of_kin_phone ?? 'N/A' }}
Email: {{ $user->next_of_kin_email ?? 'N/A' }}
Address: {{ $user->next_of_kin_address ?? 'N/A' }}
Last Login:
{{ $user->last_login_time ? $user->last_login_time->diffForHumans() : 'Never Logged In' }}
{{ $device }} - {{ $platform }} - {{ $browser }}
Back
@include('dashboard.admin.user.partials.edit_user_modal') @endsection