@extends('layouts.app') @section('content')

Kelola Bendahara

@if(session('success'))
{{ session('success') }}
@endif @if($errors->has('bendahara'))
{{ $errors->first('bendahara') }}
@endif {{-- Form tambah bendahara (hanya muncul kalau belum ada yang aktif) --}} @if(!$bendaharaAktif)
Tambah Akun Bendahara
@csrf
@endif {{-- Daftar bendahara --}}
Riwayat Akun Bendahara
@forelse($bendaharas as $b) @empty @endforelse
Nama Username Email Status Aksi
{{ $b->name }} {{ $b->username }} {{ $b->email }} @if($b->status_akun === 'aktif') Aktif @else Nonaktif @endif @if($b->status_akun === 'aktif')
@csrf @method('PATCH')
@else - @endif
Belum ada akun bendahara.
@endsection