1. {{ __('Onsite Dashboard') }}
  2. {{ __('Correct-A-Badge') }}

Correct-A-Badge
@foreach($orders as $order) @endforeach
Badge Name City/Group Purchaser Action
{{$order->tag_line_1}} {{$order->tag_line_2}} {{$user->full_name}} Select

Edit

{!!Form::model($attendees_order, ['route' => ['onsite.attendees_orders.update', ['attendees_order' => $attendees_order->id]], 'method' => 'put', 'enctype' => 'multipart/form-data'])!!}
{{Form::label('tag_line_1', 'Badge Name', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('tag_line_1', $attendees_order->tag_line_1, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900'])}} @if($errors->has('tag_line_1'))

{{$errors->first('tag_line_1')}}

@endif
{{Form::label('tag_line_2', 'City and/or Group Name', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('tag_line_2', $attendees_order->tag_line_2, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900'])}} @if($errors->has('tag_line_2'))

{{$errors->first('tag_line_2')}}

@endif
{{Form::label('affiliation_type_id', 'Affiliation', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::select('affiliation_type_id',$affiliation_types, $attendees_order->affiliation_type_id, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900'])}} @if($errors->has('affiliation_type_id'))

{{$errors->first('affiliation_type_id')}}

@endif
{!!Form::close()!!}   PRINT THIS BADGE