{!! Form::open([ 'url' => action('App\Http\Controllers\subadmin\StudentController@store'), 'method' => 'post', 'files' => true, 'id' => 'company_add_form', 'enctype' => 'multipart/form-data', ]) !!} {!! Form::hidden('userid',Auth::user()->id)!!}
{!! Form::label('cname','Course Name *', ['class' => 'form-label']) !!}
{!! Form::label('certifiace_no','Certifiace No *', ['class' => 'form-label']) !!} {!! Form::text('certifiace_no',null, ['class' => 'form-control','placeholder' => 'Enter certifiace no', 'required']); !!}
{!! Form::label('period_from','Period From *', ['class' => 'form-label']) !!} {!! Form::date('period_from',null, ['class' => 'form-control','id' => 'period_from','placeholder' => 'Enter mobile number', 'required']); !!}
{!! Form::hidden('duration',null, ['id'=>'duration']); !!} {!! Form::hidden('validity',null, ['id'=>'validity']); !!} {!! Form::label('period_to','Period To *', ['class' => 'form-label']) !!} {!! Form::date('period_to',null, ['class' => 'form-control','id' => 'period_to','placeholder' => 'Enter period to', 'required']); !!}
{!! Form::label('certificate_issue_date','Certificate issue date *', ['class' => 'form-label']) !!} {!! Form::date('certificate_issue_date',null, ['id' => 'certificate_issue_date','class' => 'form-control','placeholder' => 'Enter Certificate issue date', 'required','readonly']); !!}
{!! Form::label('certificate_valid_upto','Certificate valid upto *', ['class' => 'form-label']) !!} {!! Form::date('certificate_valid_upto',null, ['id' => 'certificate_valid_upto','class' => 'form-control','placeholder' => 'Enter certificate valid upto', 'required','readonly']); !!}
{!! Form::label('cimg','Photo *', ['class' => 'form-label']) !!}
{!! Form::label('cname','Name *', ['class' => 'form-label']) !!} {!! Form::text('cname',null, ['class' => 'form-control','placeholder' => 'Enter name', 'required']); !!}
{!! Form::label('cso','S/O Name *', ['class' => 'form-label']) !!} {!! Form::text('cso',null, ['class' => 'form-control','placeholder' => 'Enter Father name', 'required']); !!}
{!! Form::label('cdob','DOB *', ['class' => 'form-label']) !!} {!! Form::date('cdob',null, ['class' => 'form-control','placeholder' => 'Enter dob', 'required']); !!}
{!! Form::label('cmobileno','Mobile Number *', ['class' => 'form-label']) !!} {!! Form::number('cmobileno',null, ['class' => 'form-control','placeholder' => 'Enter mobile number', 'required']); !!}
{!! Form::label('caddress','Address *', ['class' => 'form-label']) !!} {!! Form::text('caddress',null, ['class' => 'form-control','placeholder' => 'Enter address', 'required']); !!}
{!! Form::label('states','State *', ['class' => 'form-label']) !!}
{!! Form::label('district','District *', ['class' => 'form-label']) !!} {!! Form::select('district',[],null, ['id' => 'district1','class' => 'form-control','placeholder' => 'Enter District', 'required']); !!}
{!! Form::label('hologram_serial_no','Hologram Serial No.*', ['class' => 'form-label']) !!} {!! Form::text('hologram_serial_no',null, ['class' => 'form-control','placeholder' => 'Enter Hologram Serial No', 'required']); !!}
{!! Form::label('aadharno','Aadhar/DL No. *', ['class' => 'form-label']) !!} {!! Form::text('aadharno',null, ['class' => 'form-control','placeholder' => 'Enter DL/Aadhar No.', 'required']); !!}
{!! Form::label('aadharphoto','Front of Aadhar/DL *', ['class' => 'form-label']) !!}
{!! Form::label('aadharphoto_back','Back of Aadhar/DL', ['class' => 'form-label']) !!}
{!! Form::label('certificate_image','Certificate image', ['class' => 'form-label']) !!}
{!! Form::label('coordinator_name','Coordinator Name *', ['class' => 'form-label']) !!} {!! Form::select('coordinator_name',$coordinators,null, ['class' => 'form-control','id' => 'coordinator1','placeholder' => 'Enter Coordinator Name', 'required']); !!}
{!! Form::label('fees','Fees *', ['class' => 'form-label']) !!} {!! Form::number('fees',null, ['class' => 'form-control','id' => 'fees','placeholder' => 'Enter fees', 'required', 'readonly']); !!}
{!! Form::label('status','Status *', ['class' => 'form-label']) !!} {!! Form::select('status',['Public'=>'Public','Admin'=>'Admin'],null, ['class' => 'form-control','placeholder' => 'Select status', 'required']); !!}