@extends('dashboard.base') @section('content')

Add Standard Sector

{{-- Success message --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif {{-- Add Category Form --}}
@csrf
{{-- Categories Table --}}
Existing Sectors
@if($categories->isEmpty())

No sectors found.

@else @foreach($categories as $index => $category) @endforeach
# Sector Name Actions
{{ $index + 1 }} {{ $category->name }} Edit
@csrf @method('DELETE')
{{-- Pagination Controls --}}
@endif
{{-- Edit Category Modal --}} {{-- JS --}} @endsection