@extends('layouts.main') @section('content')
@if (Session::has('success')) @endif @if (Session::has('error')) @endif

Informasi Akun

Perbarui informasi nama profil dan alamat email akun Anda.

@csrf
@csrf @method('patch')
@if ($errors->has('fullname'))

{{ $errors->first('fullname') }}

@endif
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif @if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && !$user->hasVerifiedEmail())
Alamat email Anda belum diverifikasi. @if (session('status') === 'verification-link-sent')

Tautan verifikasi baru telah dikirimkan ke alamat email Anda.

@endif
@endif
@if (Session::has('success-password')) @endif @if (Session::has('error-password')) @endif

Ubah Password

Pastikan akun Anda menggunakan kata sandi yang panjang dan acak agar tetap aman.

@csrf @method('put')
@if ($errors->has('updatePassword.current_password'))

{{ $errors->first('updatePassword.current_password') }}

@endif
@if ($errors->has('updatePassword.password'))

{{ $errors->first('updatePassword.password') }}

@endif
@if ($errors->has('updatePassword.password_confirmation'))

{{ $errors->first('updatePassword.password_confirmation') }}

@endif
@if (session('status') === 'password-updated')

Tersimpan.

@endif
@endsection