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

Profil Saya

Kelola data profil Anda.

@foreach ($tabs as $tab) {{ $tab['label'] }} @endforeach
@if (session('status'))
{{ session('status') }}
@endif

Ubah Password

Pastikan akun Anda tetap aman.

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

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror
@endsection