@extends('layouts.app') @section('javascript') @endsection @section('content')

Create New Course

{!! Former::vertical_open()->id('edit-notification')->rules(['name' => 'required'])->method('POST')->action(route('courses.store')) !!}
{!! Former::text('name')->label('Name') !!} {!! Former::select('provider_id')->label('Provider')->addClass('select2')->fromQuery($providerOptions) !!} {!! Former::select('category_id')->label('Category')->addClass('select2')->fromQuery($categoryOptions) !!} {!! Former::text('location')->label('Location') !!} {!! Former::date('enroll_date')->label('Enrolment Date') !!} {!! Former::number('price')->label('Price')->prepend('') !!} {!! Former::number('citb_price')->label('CITB Price')->prepend('') !!} {!! Former::checkbox('active')->addClass('js-switch-primary')->check(true) !!}
Cancel
{!! Former::close() !!}
@endsection