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

Edit Group

{!!Form::model($group, ['route' => ['admin.groups.update', ['group' => $group]], 'method' => 'put'])!!}
{{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()!!}