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

Donate Now


{{csrf_field()}}
@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

{{ $donorInfo->first_name.' '.$donorInfo->last_name }}

{{ $donorInfo->address }}

{{ '+'.$donorInfo->country_code.'-'.$donorInfo->contact }}

@endif
C
@endsection @push('modals') @include('admin.donor.partials.addDonorModal',['module'=>'receipt']) @endpush @push('scripts')