• {{ __('Admin') }}
  • {{ __('Ticketing Dashboard') }}
  • {{ __('Badge Management') }}
  • Badge Management

    {{ Form::open(['route' => 'admin.badge_management.index', 'class' =>'form-horizontal', 'method' => 'GET']) }}
    {{ Form::label('user_id', 'User', ['class' => 'dark:text-slate-300 control-label']) }}
    {{ Form::select('user_id', $users, $_GET['user_id'] ?? null, ['class' => 'form-control text-xl dark:bg-slate-600 dark:text-slate-300 dark:border-slate-900']) }}
    {{ Form::close() }} @foreach ($attendees_orders as $attendees_order) @endforeach
    Badge ID Order ID Name City/Group Affliation Action
    Edit Badge {{$attendees_order->id}} View Order {{$attendees_order->order_id}} {{$attendees_order->tag_line_1}} {{$attendees_order->tag_line_2}} {{$attendees_order->affiliation_type->name}} Print
    {!!Form::open(['url' => '#', 'method' => 'put', 'id' => 'edit_form', 'enctype' => 'multipart/form-data', 'style' => 'display:none;'])!!}
    {{Form::label('tag_line_1', 'Name', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('tag_line_1', null, ['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/Group', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('tag_line_2', null, ['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, null, ['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()!!}