{!! Form::open([ 'url' => action('App\Http\Controllers\CenterController@store'), 'method' => 'post', 'files' => true, 'id' => 'company_add_form', 'enctype' => 'multipart/form-data', ]) !!}
{!! Form::label('photo','Photo *', ['class' => 'form-label']) !!}
{!! Form::label('courseid','Course *', ['class' => 'form-label']) !!} {!! Form::select('courseid[]',$courses,null, ['class' => 'form-control js-example-basic-multiple','multiple'=>'multiple', 'required']); !!}
{!! Form::label('name','Name *', ['class' => 'form-label']) !!} {!! Form::text('name',null, ['class' => 'form-control','placeholder' => 'Enter name', 'required']); !!}
{!! Form::label('father_name','Father Name *', ['class' => 'form-label']) !!} {!! Form::text('father_name',null, ['class' => 'form-control','placeholder' => 'Enter Father name', 'required']); !!}
{!! Form::label('dob','DOB *', ['class' => 'form-label']) !!} {!! Form::date('dob',null, ['class' => 'form-control','placeholder' => 'Enter dob', 'required']); !!}
{!! Form::label('mobilenumber','Mobile Number *', ['class' => 'form-label']) !!} {!! Form::number('mobilenumber',null, ['class' => 'form-control','placeholder' => 'Enter mobile number', 'required']); !!}
{!! Form::label('address','Address *', ['class' => 'form-label']) !!} {!! Form::text('address',null, ['class' => 'form-control','placeholder' => 'Enter address', 'required']); !!}
{!! Form::label('state','State *', ['class' => 'form-label']) !!} {!! Form::select('state',['Andhra Pradesh'=>'Andhra Pradesh','Arunachal Pradesh'=>'Arunachal Pradesh','Assam'=>'Assam','Bihar'=>'Bihar','Chhattisgarh'=>'Chhattisgarh','Goa'=>'Goa','Gujarat'=>'Gujarat','Haryana'=>'Haryana','Himachal Pradesh'=>'Himachal Pradesh','Jharkhand'=>'Jharkhand','Karnataka'=>'Karnataka','Kerala'=>'Kerala','Madhya Pradesh'=>'Madhya Pradesh','Maharashtra'=>'Maharashtra','Manipur'=>'Manipur','Meghalaya'=>'Meghalaya','Mizoram'=>'Mizoram','Nagaland'=>'Nagaland','Odisha'=>'Odisha','Punjab'=>'Punjab','Rajasthan'=>'Rajasthan','Sikkim'=>'Sikkim','Tamil Nadu'=>'Tamil Nadu','Telangana'=>'Telangana','Tripura'=>'Tripura','Uttarakhand'=>'Uttarakhand','Uttar Pradesh'=>'Uttar Pradesh','West Bengal'=>'West Bengal'],null, ['class' => 'form-control','id' => 'state','placeholder' => 'Select State ?', 'required']); !!}
{!! Form::label('district','District *', ['class' => 'form-label']) !!} {!! Form::text('district',null, ['class' => 'form-control','placeholder' => 'Enter district', 'required']); !!}
{!! Form::label('aadharnumber','Aadhar Number *', ['class' => 'form-label']) !!} {!! Form::number('aadharnumber',null, ['class' => 'form-control','placeholder' => 'Enter Aadhar Number', 'required']); !!}
{!! Form::label('aadharphoto','Aadhar photo *', ['class' => 'form-label']) !!}
{!! Form::label('aadharphoto_back','Aadhar Back photo *', ['class' => 'form-label']) !!}
{!! Form::label('email','Email *', ['class' => 'form-label']) !!} {!! Form::text('email',null, ['class' => 'form-control','placeholder' => 'Enter email', 'required']); !!}
{!! Form::label('status','Status *', ['class' => 'form-label']) !!} {!! Form::select('status',['Active'=>'Active','Inactive'=>'Inactive'],null, ['class' => 'form-control','placeholder' => 'Select status ?', 'required']); !!}