@extends('layouts.frontend.master') @section('title', 'Register for ' . $event->name) @push('styles') @endpush @section('content')

Register for {{ $event->name }}

Complete your registration and select your participation options

Event Information

Event Dates

@if($event->dates->isNotEmpty()) @foreach($event->dates as $date) {{ $date->date->format('l, F j, Y') }} @if($date->start_time) at {{ $date->start_time->format('g:i A') }} @endif @if(!$loop->last)
@endif @endforeach @else Date TBD @endif

Venue

{{ $event->venue }}

Expected Attendees

{{ $event->expected_attendees ?? 'TBD' }} participants

Category

{{ $event->category_name }}

@if($event->description)

Event Description

{{ $event->description }}

@endif
@csrf

Registration Options

Select Event Dates

Choose which days you want to attend. Each date has its own pricing.

Attend all {{ $eventDates->count() }} event dates

${{ $eventDates->sum('fee') }}.00
@foreach($eventDates as $index => $date)

@if($date->start_time) {{ $date->start_time->format('g:i A') }} @if($date->end_time) - {{ $date->end_time->format('g:i A') }} @endif @else Time TBD @endif

${{ number_format($date->fee, 2) }}
@endforeach
@error('selected_dates')

{{ $message }}

@enderror
@if($event->is_guest_allowed)

Guest Registration

You can register guests to attend with you. Prices vary by date.

Spouse

Select dates to see pricing

Children (Below 5 Years)

Select dates to see pricing

Children (5 to 12 Years)

Select dates to see pricing

Children (Above 12 Years)

Select dates to see pricing

Driver

Select dates to see pricing

Maid

Select dates to see pricing

Other Guest

Select dates to see pricing

@endif
@error('special_requirements')

{{ $message }}

@enderror

Payment Summary

Alumni Registration: $0.00
Guest Registration: $0.00
Subtotal: $0.00
Processing Fee (3%): $0.00
Service Fee: $2.50
Total: $0.00

(Subtotal + Processing Fee + Service Fee)

@if($event->is_guest_allowed) @endif @endsection @push('js') @endpush