@extends('layouts.app') @section('title', 'Edit Fee Structure | Institution Axis') @section('sidebar-menu') @include('schooladmin.partials.sidebar') @endsection @section('sidebar-footer')

{{ auth()->user()->school?->name ?? 'Institution Axis' }}

@endsection @section('breadcrumb') Home / Finance / Fee Structures / Edit @endsection @section('content')
Edit Fee Structure
@csrf @method('PUT')
@error('school_class_id')
{{ $message }}
@enderror
@error('term')
{{ $message }}
@enderror
@error('academic_year')
{{ $message }}
@enderror

Fee Breakdown Components
@foreach($feeStructure->items as $index => $item)
@endforeach
Total Fee Amount: KES {{ number_format($feeStructure->total_amount, 2) }}
Cancel
@endsection @push('scripts') @endpush