@extends('frontend.event.registration.layout') @section('css') @endsection @section('content')
@if (isset($type) && $type == App\Enums\EventRegistrationTypeEnum::ONLINE)

✅ Thank You for Registering for {{ $event->title ?? '' }} !

Your registration has been successfully received.

Here are your submitted details:

Name: {{ $user->name ?? '' }}

Mobile Number: {{ $user->contact ?? '' }}

Email ID: {{ $user->email ?? '' }}

📩 A confirmation message has been sent to your WhatsApp and email.

Note: If you don’t find the confirmation email in your inbox, please check your Spam, Promotions, or Other folders.

📞 Need Help?
If you haven’t received any confirmation on WhatsApp or email, please contact:
{{ $event->eventManager->admin->name ?? '' }}{{ $event->eventManager->admin->contact ?? '' }}

We look forward to seeing you at the conference!

@elseif(isset($type) && $type == App\Enums\EventRegistrationTypeEnum::OFFLINE)

✅ Thank You for Registering for {{ $event->title ?? '' }} !

We have received your registration details and offline payment information.

Please note: Offline payments (via bank transfer or UPI) will be reviewed by the Organising Committee within 2–3 working days. Once verified, you will receive a confirmation email along with your registration number.

We appreciate your patience during this process.

Here are your submitted details:

Name: {{ $user->name ?? '' }}

Mobile Number: {{ $user->contact ?? '' }}

Email ID: {{ $user->email ?? '' }}

📩 A confirmation message has been sent to your WhatsApp and email.

Note: If you don’t find the confirmation email in your inbox, please check your Spam, Promotions, or Other folders.

📞 Need Help?
If you haven’t received any confirmation on WhatsApp or email, please contact:
{{ $event->eventManager->admin->name ?? '' }}{{ $event->eventManager->admin->contact ?? '' }}

We look forward to seeing you at the conference!

@endif
@endsection @section('pageJS') @endsection