@if ($errors->has('donor_id'))
{{ $errors->first('donor_id') }} @endif
@if(Request::has('donor_id'))
@php $donorInfo = App\Models\Donor::where('id',Request::get('donor_id'))->first(); @endphp
@endif
@if ($errors->has('payment_mode')) {{ $errors->first('payment_mode') }} @endif
@if ($errors->has('expiry_month')) {{ $errors->first('expiry_month') }} @endif
@if ($errors->has('expiry_year')) {{ $errors->first('expiry_year') }} @endif
@php $organizations = \App\Models\ReceiptOrganization::get(); @endphp
@if ($errors->has('organization'))
{{ $errors->first('organization') }} @endif
@if ($errors->has('issued_to')) {{ $errors->first('issued_to') }} @endif
@if ($errors->has('payment_frequency')) {{ $errors->first('payment_frequency') }} @endif
@if ($errors->has('payment_status')) {{ $errors->first('payment_status') }} @endif
@if ($errors->has('remarks')) {{ $errors->first('remarks') }} @endif
@if ($errors->has('event_id')) {{ $errors->first('event_id') }} @endif