@extends('admin.includes.base') @section('content')
@include('common.notify')

Update Receipt


{{csrf_field()}}

Donor Information

@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('contact_type')) {{ $errors->first('contact_type') }} @endif
@if ($errors->has('contact')) {{ $errors->first('contact') }} @endif
@if ($errors->has('alternate_contact_type')) {{ $errors->first('alternate_contact_type') }} @endif
@if ($errors->has('alternate_contact')) {{ $errors->first('alternate_contact') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('street_number')) {{ $errors->first('street_number') }} @endif
@if ($errors->has('street_route')) {{ $errors->first('street_route') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('state')) {{ $errors->first('state') }} @endif
@if ($errors->has('postal_code')) {{ $errors->first('postal_code') }} @endif
@if ($errors->has('country')) {{ $errors->first('country') }} @endif


Payment Information

@if ($errors->has('amount')) {{ $errors->first('amount') }} @endif
@if ($errors->has('payment_mode')) {{ $errors->first('payment_mode') }} @endif
payment_mode=='Card') style="display: block;" @else style="display: none;" @endif>
@if ($errors->has('card_number')) {{ $errors->first('card_number') }} @endif
@if ($errors->has('expiry_month')) {{ $errors->first('expiry_month') }} @endif
@if ($errors->has('expiry_year')) {{ $errors->first('expiry_year') }} @endif
@if ($errors->has('cvv')) {{ $errors->first('cvv') }} @endif

payment_mode=='Cheque') style="display: block;" @else style="display: none;" @endif>
@if ($errors->has('cheque_no')) {{ $errors->first('cheque_no') }} @endif
@if ($errors->has('cheque_date')) {{ $errors->first('cheque_date') }} @endif

payment_mode=='Pledge') style="display: block;" @else style="display: none;" @endif>
@if ($errors->has('pledge_date')) {{ $errors->first('pledge_date') }} @endif

@if ($errors->has('payment_status')) {{ $errors->first('payment_status') }} @endif
@if ($errors->has('remarks')) {{ $errors->first('remarks') }} @endif
@push('scripts') @endpush
@endsection