@stack('head') @php $setting = $setting ?? current_school(); $is = fn($pattern) => request()->routeIs($pattern) ? 'active' : ''; @endphp

@yield('title', 'Beranda')

{{ auth()->user()->name ?? '' }}
{{ now()->translatedFormat('l, d F Y') }}
@if(session('sukses'))
{{ session('sukses') }}
@endif @if(session('gagal'))
{{ session('gagal') }}
@endif @if($errors->any())
Terdapat kesalahan:
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif @yield('content')
@stack('scripts')