Apply to lead the marathon meeting: {{$event->name}} on {{date('l, M j \a\t g:i A', strtotime($event->start_at))}}
{{ Form::hidden('event_id', $event->id) }} {{ Form::hidden('description', $event->description) }}
{{ Form::label('firstname', 'First Name') }} {{ Form::text('firstname', null, ['class' => 'form-control', 'required', 'wire:model' => 'firstname']) }}
{{ Form::label('lastname', 'Last Initial') }} {{ Form::text('lastname', null, ['class' => 'form-control', 'required', 'wire:model' => 'lastname']) }}
{{ Form::label('email', 'Email address') }} {{ Form::text('email', null, ['class' => 'form-control', 'required', 'wire:model' => 'email']) }}
{{ Form::label('phone', 'Phone Number') }} {{ Form::text('phone', null, ['class' => 'form-control', 'required', 'wire:model' => 'phone']) }}
@if($settings->where('key', 'USE_MARATHON_AREA_MEETING')->first()->value == 1)
{{ Form::label('area_meeting_id','Match to Area meeting') }} {{ Form::select('area_meeting_id', $area_meetings, null, ['class' => 'form-control', 'wire:model' => 'area_meeting_id', 'placeholder' => 'Select']) }}
@endif
{{ Form::checkbox('is_mobile', 1, ['wire:model' => 'is_mobile']) }}
{{ Form::label('is_mobile', 'This number is a mobile phone and I authorize SMS text message reminders') }}