- Full Name
- {{ $user->name }}
- Email Address
- {{ $user->email }}
- Role
-
@if($user->roles->count() > 0)
@foreach($user->roles as $role)
{{ ucfirst($role->name) }}
@endforeach
@else
No role assigned
@endif
- Status
-
@if($user->is_active)
Active
@else
Inactive
@endif
- Email Verified
-
@if($user->email_verified_at)
Verified
@else
Unverified
@endif
- Member Since
- {{ $user->created_at->format('M d, Y') }}
- Last Updated
- {{ $user->updated_at->format('M d, Y H:i') }}
@if($user->email_verified_at)
- Email Verified At
- {{ $user->email_verified_at->format('M d, Y H:i') }}
@endif