{{-- Profile Page --}} {{-- Page Heading --}}
My Profile
Manage your account details and password
{{-- ── LEFT ── --}}
{{-- Identity Card --}}
{{ strtoupper(substr($admin->name, 0, 1)) }}
{{ $admin->name }}
{{ $admin->email }}
@foreach($admin->roles as $role) {{ ucfirst(str_replace('-', ' ', $role->name)) }} @endforeach
{{-- Meta Info --}}
Status
@if($admin->is_active) Active @else Inactive @endif
Two-Factor Auth
@if($admin->two_factor_enabled) Enabled @else Disabled @endif
@if($admin->staff?->employee_code)
Employee Code
{{ $admin->staff->employee_code }}
@endif @if($admin->staff?->department)
Department
{{ $admin->staff->department }}
@endif
Member Since
{{ $admin->created_at->format('d M Y') }}
{{-- ── RIGHT ── --}}
{{-- Personal Info --}}
Personal Information
Update your name, email and phone number
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
{{-- Change Password --}}
Change Password
Use a strong password — minimum 8 characters
@csrf @method('PUT')
@error('current_password')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror