@section('title', (isset($page_title) ? $page_title . ' | ' : '') . config('app.name')) @section('breadcrumb', (isset($page_title) ? $page_title : ''))
User KYC Details {{ ucfirst($user->kyc_status) }}
Name: {{ $user->name }}
Email: {{ $user->email }} @if ($user->email_verified_at) Verified @else Unverified @endif
@if (!$user->email_verified_at)
@if($send_email_otp) @else @endif
@endif
Phone: {{ $user->phone }} @if ($user->phone_verified_at) Verified @else Unverified @endif
@if (!$user->phone_verified_at)
@if($send_phone_otp) @else @endif
@endif
@if($user->countrySegregation)
Location Information
Country: {{ $user->countrySegregation->country->name ?? 'N/A' }}
@foreach ($user->countrySegregation->columns ?? [] as $column)
{{ ucfirst($column['name']) }}: {{ $column['value'] ?? 'N/A' }}
@endforeach
@endif
Languages
@if($language_list->isNotEmpty())
@foreach($language_list as $lang)
@endforeach
@else
No languages available
@endif
Specialties
@if($specialties_list->isNotEmpty())
@foreach($specialties_list as $specialty)
@endforeach
@else
No specialties available
@endif