{{ __('Profile') }}

{{-- Main Content Card --}}
{{-- Title --}}

{{ __('Profile') }}

{{-- Profile Information Display Section --}}

{{ __('Profile Information') }}

{{-- Row 1: Username and Full Name --}}

{{ auth()->user()->userID }}

{{ auth()->user()->fullName }}

{{-- Row 2: Email and Department --}}

{{ auth()->user()->email }}

{{ auth()->user()->department ?? '-' }}

{{-- Row 3: Role and Account Status --}}

{{ auth()->user()->role }}

{{ auth()->user()->accStat ?? '-' }}

{{-- Update Profile Information Section --}}
{{-- Update Password Section --}}
{{-- Delete Account Section --}}