@php $navItems = [ ['route' => 'dashboard', 'label' => 'Dashboard', 'icon' => 'fa-gauge'], ['route' => 'posts.index', 'label' => 'Posts', 'icon' => 'fa-newspaper'], ['route' => 'events.index', 'label' => 'Events', 'icon' => 'fa-calendar'], ['route' => 'programs.index', 'label' => 'Programs', 'icon' => 'fa-hand-holding-heart'], ['route' => 'categories.index', 'label' => 'Categories', 'icon' => 'fa-tags'], ['route' => 'donations', 'label' => 'Donations', 'icon' => 'fa-heart'], ['route' => 'feedback', 'label' => 'Feedback', 'icon' => 'fa-comments'], ['route' => 'beneficiaries', 'label' => 'Beneficiaries', 'icon' => 'fa-people-group'], ['route' => 'settings', 'label' => 'Settings', 'icon' => 'fa-gear'], ]; @endphp

Karwan Welfare Foundation

@yield('title', 'Admin Dashboard')

{{ auth()->user()?->name ?? 'Administrator' }}
{{ auth()->user()?->email }}
@csrf
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@yield('content')