@if ($message = Session::get('success'))

Thank you for booking, {{ $ycm->firstname }}.

Please now check your email for further information.

@if ($ycm->category != "cpp") Audition Booked

{{ $ycm->audition->venue_date->name }}, {{ date('l d F Y', strtotime($ycm->audition->venue_date->start_date)) }} | {{ $ycm->audition->venue_date->venue->town }}

@endif
@elseif ($message = Session::get('error')) @elseif ($message = Session::get('info')) @else {{-- Show previous payment attempts if any --}} @if($previousAttempts->count() > 0)

Previous Payment Attempts

@foreach($previousAttempts->take(3) as $attempt)
{{ $attempt->getPaymentDescription() }}
{{ $attempt->created_at->format('M j, Y g:i A') }} - {{ ucfirst($attempt->payment_status) }} - £{{ $attempt->amount }}
@if($attempt->hasEmailMismatch())
⚠️ Paid with different email: {{ $attempt->payer_email }}
@endif
@if($attempt->canBeResumed()) Resume Payment @endif
@endforeach @if($previousAttempts->count() > 3)
... and {{ $previousAttempts->count() - 3 }} more attempts
@endif
@endif

Thanks! Please now click on the link below to pay.

Your application will not be completed until you have paid.

We look forward to meeting you!

Pay with PayPal
@endif