@extends('layouts.app') @section('title', 'Profil Saya') @section('content')

Profil Saya

Kelola informasi akun dan keamanan password

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Profile Information

Update informasi akun dan email Anda.

@csrf @method('PUT')
@error('username')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror

Update Password

Gunakan password yang aman untuk melindungi akun Anda.

@csrf @method('PUT')
@error('current_password')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror

Delete Account

Setelah akun dihapus, seluruh data akun akan terhapus permanen.

@csrf
@endsection