@extends('layouts.app') @section('title', 'Profil Saya') @php $tabs = [ ['route' => 'admin.setting.profile', 'label' => 'Profil', 'active' => true], ['route' => 'admin.setting.password', 'label' => 'Password', 'active' => false], ['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

Edit Profil

Perbarui nama dan email Anda.

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

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror
@endsection