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

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

@endsection @section('breadcrumb') Home / Finance / Payments / Record @endsection @section('content')
Record Student Payment
@if(session('error'))
{{ session('error') }}
@endif
@csrf
@error('invoice_id')
{{ $message }}
@enderror
@error('payment_date')
{{ $message }}
@enderror
@if($invoice) Max allowed: KES {{ number_format($invoice->balance(), 2) }} @endif
@error('amount')
{{ $message }}
@enderror
@error('payment_method')
{{ $message }}
@enderror
Cancel
@push('scripts') @endpush @endsection