@php use Illuminate\Support\Facades\Auth; use App\Models\SystemSetting; @endphp @props([ 'elderly' => null, 'currency' => null, 'suggestedAmounts' => [25, 50, 100, 250, 500], 'paymentMethods' => [] ])
@if(request()->has('plan') && request()->has('recurring') && request()->recurring == 'true')

Updating Payment Method

You're updating the payment method for an existing subscription. Complete this donation to use a new payment method for future charges.

Note: Canceling this process will NOT cancel your existing subscription.

@endif
@csrf @if($elderly) @endif

Donation Amount

@if(SystemSetting::isGlobalCurrencyOverrideEnabled()) @endif
{{ \App\Services\CurrencyService::getCurrencySymbol($currency) }}
@error('amount')

{{ $message }}

@enderror
@foreach($suggestedAmounts as $amount) @endforeach

Personal Information

@if(Auth::check())

You are donating as {{ Auth::user()->name }} ({{ Auth::user()->email }})

@else
@error('donor_name')

{{ $message }}

@enderror
@error('donor_email')

{{ $message }}

@enderror
@endif