@extends('components.public-layout') @section('title', 'Registration Successful') @section('content')

Registration Successful!

Thank you for registering for {{ $program->name }}

Registration Details
Program Information
@if($program->time_range) @endif @if($program->venue) @endif
Program: {{ $program->name }}
Date: {{ $program->date_range }}
Time: {{ $program->time_range }}
Venue: {{ $program->venue }}
Registration ID: #{{ $registration->id }}
Business Information
Business: {{ $registration->business_name }}
Type: {{ $registration->formatted_business_type }}
Contact: {{ $registration->contact_name }}
Email: {{ $registration->email }}
Phone: {{ $registration->business_phone }}
Status: {{ ucfirst($registration->status) }}
@if($registration->hasUploadedFiles())
Uploaded Files

{{ $registration->getFileUploadSummary() }}

@endif
What's Next?
Registration Status

Your registration is currently pending review. Our team will review your application and notify you of the status.

@if($program->registration_fee > 0)
Payment Information

Registration Fee: ₵{{ number_format($program->registration_fee, 2) }}
Payment instructions will be sent to you once your registration is approved.

@endif
Contact Information
@if($program->contact_email || $program->contact_phone)

If you have any questions, please contact us:

@if($program->contact_email)

{{ $program->contact_email }}

@endif @if($program->contact_phone)

{{ $program->contact_phone }}

@endif @else

If you have any questions, please contact the church administration.

@endif
Important Notes
  • Please save your Registration ID: #{{ $registration->id }}
  • You will receive email notifications about your registration status
  • Keep your contact information updated for important announcements
  • @if($program->registration_deadline)
  • Registration deadline: {{ $program->registration_deadline->format('M j, Y') }}
  • @endif
@endsection