@extends('layouts.app') @section('title', 'Ubah Password') @php $tabs = [ ['route' => 'admin.setting.profile', 'label' => 'Profil', 'active' => false], ['route' => 'admin.setting.password', 'label' => 'Password', 'active' => true], ['route' => 'admin.setting.school', 'label' => 'Sekolah', 'active' => false], ]; @endphp @section('content')

Pengaturan

Kelola profil dan pengaturan akun Anda.

@foreach ($tabs as $tab) {{ $tab['label'] }} @endforeach

Ubah Password

Pastikan akun Anda tetap aman.

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

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror
@endsection