@section('title', 'Profil Saya')

Profil Saya

{{-- Tab Navigation --}}
{{-- Tab: Informasi Profil --}}
{{-- Hidden form untuk verifikasi email --}}
@csrf
{{-- Card Foto Profil (kiri) --}}
{{-- Header --}}
@if(auth()->user()->profile_photo) Foto profil @else @endif

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

@if(auth()->user()->position) {{ auth()->user()->position }} @endif
{{-- Form Upload Foto --}}

Foto Profil

@csrf @method('patch')

JPG atau PNG, maks. 2MB

{{-- Info singkat --}}

Email

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

NIP

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

Divisi

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

{{-- Card Data Profil (kanan) --}}
{{-- Header --}}

Data Profil

Informasi lengkap akun Anda

{{-- View Mode --}}

NIP

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

Nama Lengkap

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

Email

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

No. Telepon

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

Jenis Kelamin

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

Divisi

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

Jabatan

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

Alamat

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

{{-- Edit Mode (hidden by default) --}}
{{-- /panel-info --}} {{-- Tab: Ubah Password --}} {{-- /panel-password --}}