Pengaturan Profil Pengaturan Profil Pengaturan

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

{{ auth()->user()->email ?? '-' }}
{{ auth()->user()->role ?? '-' }}
@if (auth()->user()->role == 'dokter') @livewire('setting.profile.doctor-profile', ['user_id' => auth()->user()->id]) @elseif (auth()->user()->role == 'dokter-eksternal') @livewire('setting.profile.doctor-external-profile', ['user_id' => auth()->user()->id]) @elseif (auth()->user()->role == 'perawat') @livewire('setting.profile.nurse-profile', ['user_id' => auth()->user()->id]) @elseif (auth()->user()->role == 'staf') @livewire('setting.profile.staff-profile', ['user_id' => auth()->user()->id]) @elseif (auth()->user()->role == 'karyawan') @livewire('setting.profile.employees-profile', ['user_id' => auth()->user()->id]) @elseif (auth()->user()->role == 'pasien') @livewire('setting.profile.patient-profile', ['user_id' => auth()->user()->id]) @else

Maaf

Sunting profil tidak tersedia untuk akun Anda.
@endif