{{-- {{ __('Dashboard') }} --}}
  1. {{ __('Admin') }}
  2. {{ __('Badging Dashboard') }}
  3. {{ __('Create') }}

Create New User

{!!Form::open(['route' => 'admin.badging.users.store', 'method' => 'post'])!!}
{{Form::label('firstname', 'First name', ['class'=>'control-label dark:bg-gray-800 dark:text-gray-300'])}} {{Form::text('firstname', null, ['class' => 'border-none dark:bg-gray-800 dark:text-gray-300', $errors->has('firstname') ? 'is-invalid' : null, 'required' => true])}} @if($errors->has('firstname'))

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

@endif
{{Form::label('lastname', 'Last name', ['class'=>'control-label dark:bg-gray-800 dark:text-gray-300'])}} {{Form::text('lastname', null, ['class' => 'border-none dark:bg-gray-800 dark:text-gray-300', $errors->has('lastname') ? 'is-invalid' : null, 'required' => true])}} @if($errors->has('lastname'))

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

@endif
{{Form::label('email', 'Email', ['class'=>'control-label dark:bg-gray-800 dark:text-gray-300'])}} {{Form::email('email', $email, ['class' => 'border-none dark:bg-gray-800 dark:text-gray-300', $errors->has('email') ? 'is-invalid' : null])}} @if($errors->has('email'))

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

@endif
{{Form::label('phone', 'Phone number', ['class'=>'control-label dark:bg-gray-800 dark:text-gray-300'])}} {{Form::text('phone', null, ['class' => 'border-none dark:bg-gray-800 dark:text-gray-300', $errors->has('phone') ? 'is-invalid' : null])}} @if($errors->has('phone'))

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

@endif
{{Form::label('affiliation_type_id', 'Affiliation Type')}} {{Form::select('affiliation_type_id', $affiliation_types, null, ['class'=>'control-label dark:bg-gray-800 dark:text-gray-300'])}}
{!!Form::close()!!}