@extends( auth()->user()->role === 'super_admin' ? 'layouts.superadmin-app' : (auth()->user()->role === 'admin' ? 'layouts.admin-app' : 'layouts.user-app') ) @section('page-title', 'Profile Settings') @section('page-subtitle', 'Kelola informasi profil Anda') @push('styles') @endpush @section('content')
{{-- ── Profile Information ── --}}
Profile Information
Perbarui informasi profil dan alamat email akun Anda
@if(session('status') === 'profile-updated')
Profile berhasil diperbarui!
@endif
Informasi Akun
@csrf @method('patch')
@error('username')

{{ $message }}

@enderror
@error('nama')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror @if($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && !$user->hasVerifiedEmail())
Alamat email Anda belum diverifikasi.
@endif
@error('no_hp')

{{ $message }}

@enderror
{{-- ── Update Password ── --}}
Update Password
Pastikan akun Anda menggunakan kata sandi yang panjang dan acak
@if(session('status') === 'password-updated')
Password berhasil diperbarui!
@endif
Ganti Password
@csrf @method('put')
@error('current_password', 'updatePassword')

{{ $message }}

@enderror
@error('password', 'updatePassword')

{{ $message }}

@enderror
@error('password_confirmation', 'updatePassword')

{{ $message }}

@enderror
{{-- ── Delete Account ── --}}
Hapus Akun
Tindakan ini tidak dapat dibatalkan
Zona Berbahaya
Setelah akun dihapus, semua data dan resource yang terkait akan dihapus secara permanen. Pastikan Anda telah mengunduh semua data yang diperlukan sebelum melanjutkan.
@endsection