@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
{{ Form::select('teacher_id', $users, null, ['class' => 'form-control custom-select']) }}
@if ($errors->has('teacher_id'))
{{ $errors->first('teacher_id') }}
@endif