User Details

{{ substr($user->name, 0, 1) }}

{{ $user->name }}

{{ $user->email }}

@if($user->status ?? null) @else Active @endif

Role

{{ $user->role->value ?? $user->role }}

@if($user->phone)

Phone

{{ $user->phone }}

@endif

Joined

{{ $user->created_at->format('F d, Y') }}

Email Verified

{{ $user->email_verified_at ? $user->email_verified_at->format('F d, Y') : 'Not verified' }}

Account Actions

@csrf @method('PATCH')