@extends('admin.layouts.app') @section('title', 'My Profile') @section('breadcrumbs') My Profile @endsection @push('styles') @endpush @section('content') @php $initials = strtoupper(substr($user->name, 0, 2)); $mobileDisplay = trim(($user->mobile_prefix ?? '') . ' ' . ($user->mobile ?? '')); @endphp
{{-- ── Hero Banner ────────────────────────────────────────────────────── --}}
{{-- Avatar --}}
{{ $initials }}
{{-- Name / role / status --}}

{{ $user->name }}

{{ $user->email }}

@if($user->role) {{ $user->role->name }} @endif {{-- @if($user->department) {{ $user->department->name }} @endif --}} {{ $user->is_active ? 'Active' : 'Inactive' }}
{{-- Action buttons --}}
{{-- ── Content ─────────────────────────────────────────────────────────── --}}
{{-- Profile Information Card --}}

Profile Information

Your personal details

Full Name {{ $user->name }}
Email {{ $user->email }}
Mobile {{ $mobileDisplay ?: '—' }}
{{--
Department {{ optional($user->department)->name ?? '—' }}
--}}
Role {{ optional($user->role)->name ?? '—' }}
Last Login {{ $user->lastlogin ? $user->lastlogin->format('d M Y, h:i A') : '—' }}
Status {{ $user->is_active ? 'Active' : 'Inactive' }}
{{-- ───────────────────────────────────────────────────────────────────────── EDIT PROFILE PANEL ──────────────────────────────────────────────────────────────────────────── --}}

Edit Profile

Update your personal information.

{{-- Hidden select --}} {{-- Trigger --}}
{{-- Number input --}}
{{-- ───────────────────────────────────────────────────────────────────────── CHANGE PASSWORD PANEL ──────────────────────────────────────────────────────────────────────────── --}}

Change Password

Update your account password.

Minimum 8 characters with uppercase, numbers and symbols recommended.

@endsection @push('modals') {{-- ── ALERT MODAL ── --}} @endpush @push('scripts') @endpush