Client User Details

Edit Back
@if($user->avatar) {{ $user->name }} @else
{{ strtoupper(substr($user->name, 0, 1)) }}
@endif

{{ $user->name }}

ID: #{{ $user->id }}

{{ $user->is_active ? 'Active' : 'Inactive' }}
{{-- Contact Information --}}

Contact Information

{{-- Account Information --}}

Account Information

{{ $user->created_at->format('M d, Y') }} at {{ $user->created_at->format('h:i A') }}

{{ $user->updated_at->format('M d, Y') }} at {{ $user->updated_at->format('h:i A') }}

@if($user->email_verified_at) Verified on {{ $user->email_verified_at->format('M d, Y') }} @else Not verified @endif

{{ $user->status ?? ($user->is_active ? 'Active' : 'Inactive') }}

{{-- Actions --}}
Edit User