@extends('layouts.admin')
@section('title', 'Record Manual Payment')
@push('styles')
@endpush
@section('content')
Record Manual Payment
Record offline/manual payment for black belt certificate
Back to List
@if($errors->any())
Validation Error:
@foreach($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if(session('warning'))
{{ session('warning') }}
@endif
Guidelines
Important:
- Payment records require verification by another admin
- You cannot verify your own payment entries
- Once verified, records cannot be edited or deleted
Payment Types:
- Cash: Physical cash payment
- Cheque: Bank cheque payment
- DD: Demand Draft
- NEFT/RTGS: Bank transfer
- UPI: Digital payment via UPI
- Other: Any other payment mode
Required Information:
- Valid user UID
- Payment type and amount
- Payment date (not future date)
- Reference number (recommended)
@push('scripts')
@endpush
@endsection