{{ __('User Details: ') . $user->name }}

@if(session('success'))
{{ session('success') }}
@endif

Profile Info

Email: {{ $user->email }}

Phone: {{ $user->phone ?? 'N/A' }}

Role: {{ $user->roles->pluck('name')->implode(', ') ?: 'None' }}

Status: {{ ucfirst($user->status) }}

Joined: {{ $user->created_at->format('M d, Y') }}

Last Login: {{ $user->last_login_at ? $user->last_login_at->format('M d, Y H:i') : 'Never' }}

Browser Binding

Reset bound browser access if the student changes laptop, browser, or phone.

@csrf
@forelse ($user->devices as $device) @empty @endforelse
Device IP Bound Cooldown Until Status
{{ $device->device_name ?: 'Unknown browser' }}
{{ $device->user_agent }}
{{ $device->ip_address ?: 'N/A' }} {{ $device->bound_at ? $device->bound_at->format('d M Y, h:i A') : 'N/A' }} {{ $device->cooldown_until ? $device->cooldown_until->format('d M Y, h:i A') : 'N/A' }} @if ($device->is_blocked || $device->replaced_at) Inactive @else Active @endif
No browser has been bound yet.

Course Enrollments

No enrollments mapping available yet.