{!! Form::open([
'url' => action('App\Http\Controllers\CoordinatorController@store'),
'method' => 'post',
'files' => true,
'id' => 'company_add_form',
'enctype' => 'multipart/form-data',
]) !!}
{!! Form::label('coordinatorname','Coordinator Name *', ['class' => 'form-label']) !!}
{!! Form::text('coordinatorname',null, ['class' => 'form-control','placeholder' => 'Enter Coordinator', 'required']); !!}
{!! Form::label('states','State *', ['class' => 'form-label']) !!}
{!! Form::label('district','District *', ['class' => 'form-label']) !!}
{!! Form::select('district',[],null, ['id'=>'district','class' => 'form-control','placeholder' => 'Enter district', 'required']); !!}
{!! Form::label('courses','Select Courses & Fees *', ['class' => 'form-label']) !!}
@foreach($courses as $course)
@endforeach
{!! Form::label('status','Status *', ['class' => 'form-label']) !!}
{!! Form::select('status',['Active'=>'Active','Inactive'=>'Inactive'],null, ['class' => 'form-control','placeholder' => 'Select status ?', 'required']); !!}