@php($currentRoute = request()->route()->getName())

Login Details

This page is read-only. You can view your login information but cannot change or delete it here.


Name
{{ $user->name }}
Email
{{ $user->email }}
Account Created
{{ optional($user->created_at)->format('d M Y, h:i A') }}
Last Login
{{ optional($user->last_login_at)->format('d M Y, h:i A') ?? '—' }}
Security Settings
@csrf
Current saved code is prefilled above. This updates `ADMIN_LOGIN_CODE` in .env.
All Registered Admins
@foreach(\App\Models\User::orderByDesc('created_at')->get() as $index => $u) @endforeach
# Name Email Created Last Login Actions
{{ $index + 1 }} {{ $u->name }} {{ $u->email }} {{ optional($u->created_at)->format('d M Y, h:i A') }} {{ optional($u->last_login_at)->format('d M Y, h:i A') ?? '—' }} @if(auth()->id() !== $u->id)
@csrf @method('DELETE')
@else You @endif