@extends('student.layouts.app') @section('title', 'Pengaturan Akun | Career Development and Consultation (CDC)') @section('header')

Pengaturan Akun

@endsection @section('content') @once @if (session()->has('success'))
{{ session()->get('success') }}
@endif @endonce

Ubah Email

@csrf @method('patch')
@error('confirmation_password')
{{ $message }}
@enderror

Ubah Password

@csrf @method('put')
@error('current_password')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
@error('password_confirmation')
{{ $message }}
@enderror
Password minimal harus terdiri dari 8 karakter dan mengandung simbol
@endsection