{{-- resources/views/front/profile/edit.blade.php --}} @extends('../layouts/master_nav') @section('title', 'Edit Profile') @section('content')
{{-- Kartu Edit Profil --}}
{{-- Judul bagian edit profil, gaya diatur di CSS --}}

Edit Informasi Profile

{{-- Form untuk Edit Profil --}}
@csrf @method('PUT') {{-- Gunakan metode PUT untuk update --}} {{-- Input Foto Profil --}}
@error('profile_photo')
{{ $message }}
@enderror
{{-- Input Nama --}}
@error('name')
{{ $message }}
@enderror
{{-- Input Tanggal Lahir --}}
@error('birthdate')
{{ $message }}
@enderror
{{-- Input Jenis Kelamin --}}
@error('gender')
{{ $message }}
@enderror
{{-- Input Email (biasanya dari user model, mungkin tidak bisa diedit langsung di sini) --}}
Email tidak dapat diubah di sini.
{{-- Input Nomor Telepon --}}
@error('phone_number')
{{ $message }}
@enderror
{{-- Input Akun Sosial Media --}}
@error('social_media')
{{ $message }}
@enderror
Batal
@endsection @push('styles') @endpush @push('scripts') {{-- Pastikan Font Awesome sudah terhubung di master.blade.php jika menggunakan ikon fas fa-camera --}} {{-- --}} @endpush