@extends('layouts.master') @section('content')
{{ Form::open(['url' => route('courses.store')]) }}

@lang('course/fields.courses')

@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
@lang('general.cancel')
{{ Form::close() }}
@endsection @section('scripts') @endsection