{{-- {{ __('Dashboard') }} --}}
  1. {{ __('Admin') }}
  2. {{ __('Groups') }}
  3. {{--
  4. {{ __($group->name) }}
  5. --}}
  6. {{ __('Create') }}

Create Group

{!!Form::open(['route' => 'admin.groups.store', 'method' => 'post'])!!} {{Form::hidden('description', " ")}}
{{Form::label('name', 'Name', ['class'=>'control-label dark:bg-gray-800 dark:text-gray-300'])}} {{Form::text('name', null, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900'])}}
{{Form::label('location_id', 'Location', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::select('location_id', $locations, null, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900', $errors->has('location_id') ? 'is-invalid' : null, 'placeholder' => 'Select'])}} @if($errors->has('location_id'))

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

@endif
{{Form::label('affiliation_type_id', 'Affiliation', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::select('affiliation_type_id', $affiliations, null, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900', $errors->has('affiliation_type_id') ? 'is-invalid' : null, 'placeholder' => 'Select'])}} @if($errors->has('affiliation_type_id'))

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

@endif
{!!Form::close()!!}