1. {{ __('Onsite Dashboard') }}
  2. {{ __('Register Prepaid Attendee') }}

Register - Create/Edit
{!! Form::open(['url' => '/onsite/order-review', 'method' => 'GET']) !!}

Enter Registrant Information:

Required field (*)

{{ Form::label('firstname','First Name *', ['class' => 'dark:text-slate-300 text-lg font-bold text-slate-400']) }} {{ Form::text('firstname', (isset($order)) ? $order->user->firstname : null, ['class' => 'text-2xl dark:bg-slate-700 dark:text-slate-300 dark:border-slate-900', 'required' => true]) }}
{{ Form::label('lastname','Last Name *', ['class' => 'dark:text-slate-300 text-lg font-bold text-slate-400']) }} {{ Form::text('lastname', (isset($order)) ? $order->user->lastname : null, ['class' => 'text-2xl dark:bg-slate-700 dark:text-slate-300 dark:border-slate-900', 'required' => true]) }}
{{ Form::label('phone','Phone (Optional but recommended)', ['class' => 'dark:text-slate-300 text-lg font-bold text-slate-400 pt-6']) }} {{ Form::text('phone', (isset($order)) ? $order->user->phone : null , ['class' => 'text-2xl dark:bg-slate-700 dark:text-slate-300 dark:border-slate-900'], ['placeholder' => '8181234567', 'maxlength'=>14, 'minlength'=>10]) }}
{{ Form::label('email','Email (Pseudo email created if left empty)', ['class' => 'dark:text-slate-300 text-lg font-bold text-slate-400 pt-6']) }} {{ Form::email('email', (isset($order)) ? $order->user->email : null, ['class' => 'text-2xl dark:bg-slate-700 dark:text-slate-300 dark:border-slate-900'], ['placeholder' => 'email@domain.com']) }}
{{ Form::label('badgename','Badge Name *', ['class' => 'dark:text-slate-300 text-2lg font-bold text-slate-400']) }} {{ Form::text('badgename', (isset($order)) ? $order->attendees[0]->tag_line_1 : null, ['class' => 'text-2xl dark:bg-slate-700 dark:text-slate-300 dark:border-slate-900', 'maxlength' => 20, 'required']) }}
{{ Form::label('group','Group or City *', ['class' => 'dark:text-slate-300 text-2lg font-bold text-slate-400']) }} {{ Form::text('group', (isset($order)) ? $order->attendees[0]->tag_line_2 : null, ['class' => 'text-2xl dark:bg-slate-700 dark:text-slate-300 dark:border-slate-900', 'maxlength' => 25, 'required']) }}
Affiliation
{{ Form::radio('affiliation', 1, isset($order) && $order->user->affiliation_type_id == 1 ? true : (isset($order) ? false : true)) }} {{ Form::label('aa','AA', ['class' => 'dark:text-slate-300 pr-4']) }} {{ Form::radio('affiliation', 2, isset($order) && $order->user->affiliation_type_id == 2 ? true : false) }} {{ Form::label('al-anon','Al-Anon', ['class' => 'dark:text-slate-300 pr-4']) }} {{ Form::radio('affiliation', 5, isset($order) && $order->user->affiliation_type_id == 5 ? true : false) }} {{ Form::label('aa-al-anon',' AA/Al-Anon', ['class' => 'dark:text-slate-300 pr-4']) }} @if(\App\Models\Setting::where('key', 'HAS_ACA_AFFILIATION')->first()->value) {{ Form::radio('affiliation', 3, isset($order) && $order->user->affiliation_type_id == 3 ? true : false) }} {{ Form::label('aca','ACA', ['class' => 'dark:text-slate-300 pr-4']) }} @endif @if(\App\Models\Setting::where('key', 'HAS_ALATEEN_AFFILIATION')->first()->value) {{ Form::radio('affiliation', 3, isset($order) && $order->user->affiliation_type_id == 3 ? true : false) }} {{ Form::label('alateen','Alateen', ['class' => 'dark:text-slate-300 pr-4']) }} @endif {{ Form::radio('affiliation', 4, isset($order) && $order->user->affiliation_type_id == 4 ? true : false) }} {{ Form::label('guest','Guest', ['class' => 'dark:text-slate-300 pr-4']) }}
{!! Form::close() !!}