• {{ __('Admin') }}
  • {{ __('Badging Dashboard') }}
  • {{ __('Detail') }}
  • {{--

    All badges for {{$user->short_name}}

    --}}

    All badges for {{$user->short_name}} View User

    @foreach($orders as $order) @endforeach
    {{$order->tag_line_1}} {{$order->tag_line_2}} {{$user->full_name}} Select
    PRINT ALL BADGES

    Edit

    {!!Form::model($attendees_order, ['route' => ['admin.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('tag_line_3', 'Tag Line 3', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('tag_line_3', $attendees_order->tag_line_3, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900'])}} @if($errors->has('tag_line_3'))

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

    @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