@extends('web_user.layouts.app') @section('title', 'Pengaturan Akun') @section('content')
{{-- Header Judul --}}

Pengaturan Akun

Kelola informasi akun Anda dengan aman.

{{-- Notifikasi Sukses --}} @if (session('status'))

{{ session('status') }}

@endif {{-- Error --}} @if ($errors->any())

Terjadi kesalahan:

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{-- Foto Profil --}}

Foto Profil

Perbarui foto akun Anda.

@csrf @method('PATCH')
@if (auth()->user()->foto)
Foto Profil
@else
{{ strtoupper(substr(auth()->user()->name, 0, 1)) }}
@endif

Format gambar JPG, JPEG, atau PNG. Maksimal 2MB.

{{-- Edit Profil --}}

Edit Profil

Perbarui nama dan email akun.

@csrf @method('PATCH')
{{-- Ubah Password --}}

Ubah Password

Gunakan password baru untuk keamanan akun.

@csrf @method('PATCH')
@endsection