@section('title', (isset($page_title) ? $page_title . ' | ' : '') . config('app.name')) @section('breadcrumb', isset($page_title) ? $page_title : '')
{{ $page_title }}
@if($user->avatar) User Avatar @else
@endif

{{ $user->name }}

{{ $user->user_code }}

{{ $user->status == '1' ? 'Active' : 'Inactive' }} @if($user->is_blocked == '1') Blocked @endif
KYC: {{ ucfirst($user->kyc_status) }}
Personal Information
Full Name:
{{ $user->name }}
Email:
{{ $user->email }} @if($user->email_verified_at) Verified Verified on: {{ \Carbon\Carbon::parse($user->email_verified_at)->format('d M Y, h:i A') }} @else Not Verified @endif
Phone:
{{ $user->phone }} @if($user->phone_verified_at) Verified Verified on: {{ \Carbon\Carbon::parse($user->phone_verified_at)->format('d M Y, h:i A') }} @else Not Verified @endif
WhatsApp:
{{ $user->whatsapp ?? 'Not provided' }} @if($user->whatsapp_verified_at) Verified Verified on: {{ \Carbon\Carbon::parse($user->whatsapp_verified_at)->format('d M Y, h:i A') }} @else Not Verified @endif
Address:
{{ $user->address ?? 'Not provided' }}
Request Rating:
@if($request_rating !== null) @php $rr = round($request_rating); @endphp @for($i = 1; $i <= 5; $i++) @endfor {{ number_format($request_rating, 1) }} @else N/A @endif
Travel Rating:
@if($travel_rating !== null) @php $tr = round($travel_rating); @endphp @for($i = 1; $i <= 5; $i++) @endfor {{ number_format($travel_rating, 1) }} @else N/A @endif
@if($user->about)
About:
{{ $user->about }}
@endif @if($user->verified_at)
Account Verified:
Verified Verified on: {{ \Carbon\Carbon::parse($user->verified_at)->format('d M Y, h:i A') }}
@endif
@if($user->kyc_details)
KYC Documents
@php $kycDetails = $user->kyc_details; @endphp @if(is_array($kycDetails)) @foreach($kycDetails as $kyc) @endforeach @endif
Document Type Value
{{ $kyc['label'] ?? 'N/A' }} @if($kyc['required']) * @endif @if($kyc['type'] == 'attachment' && isset($kyc['value'])) View Document @else {{ $kyc['value'] ?? 'N/A' }} @endif
@endif
Back to Users
Edit User @if($user->status == '1') @else @endif @if($user->is_blocked == '0') @else @endif