{!! Form::open([ 'url' => action('App\Http\Controllers\subadmin\StudentController@update', [$student->id]), 'method' => 'PUT', 'files' => true, 'id' => 'company_add_form', 'enctype' => 'multipart/form-data', ]) !!} {!! Form::hidden('userid',$student->userid)!!}
{!! Form::label('cname','Course Name *', ['class' => 'form-label']) !!}
{!! Form::label('certifiace_no','Certifiace No *', ['class' => 'form-label']) !!} {!! Form::text('certifiace_no',$student->certifiace_no, ['class' => 'form-control','placeholder' => 'Enter certifiace no', 'required']); !!}
{!! Form::label('period_from','Period From *', ['class' => 'form-label']) !!} {!! Form::date('period_from',$student->period_from, ['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',$student->period_to, ['class' => 'form-control','id' => 'period_to','placeholder' => 'Enter address', 'required']); !!}
{!! Form::label('certificate_issue_date','Certificate issue date *', ['class' => 'form-label']) !!} {!! Form::date('certificate_issue_date',$student->certificate_issue_date, ['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',$student->certificate_valid_upto, ['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',$student->cname, ['class' => 'form-control','placeholder' => 'Enter name', 'required']); !!}
{!! Form::label('cso','S/O Name *', ['class' => 'form-label']) !!} {!! Form::text('cso',$student->cso, ['class' => 'form-control','placeholder' => 'Enter Father name', 'required']); !!}
{!! Form::label('cdob','DOB *', ['class' => 'form-label']) !!} {!! Form::date('cdob',$student->cdob, ['class' => 'form-control','placeholder' => 'Enter dob', 'required']); !!}
{!! Form::label('cmobileno','Mobile Number *', ['class' => 'form-label']) !!} {!! Form::number('cmobileno',$student->cmobileno, ['class' => 'form-control','placeholder' => 'Enter mobile number', 'required']); !!}
{!! Form::label('caddress','Address *', ['class' => 'form-label']) !!} {!! Form::text('caddress',$student->caddress, ['class' => 'form-control','placeholder' => 'Enter address', 'required']); !!}
{!! Form::label('states','State *', ['class' => 'form-label']) !!}
{!! Form::label('district','District *', ['class' => 'form-label']) !!} {!! Form::select('district',[],$student->district, ['class' => 'form-control','id' => 'district1','placeholder' => 'Enter District', 'required']); !!}
{!! Form::label('hologram_serial_no','Hologram Serial No.*', ['class' => 'form-label']) !!} {!! Form::text('hologram_serial_no',$student->hologram_serial_no, ['class' => 'form-control','placeholder' => 'Enter Hologram Serial No', 'required']); !!}
{!! Form::label('aadharno','Aadhar/DL No. *', ['class' => 'form-label']) !!} {!! Form::text('aadharno',$student->aadharno, ['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 *', ['class' => 'form-label']) !!}
{!! Form::label('certificate_image','Certificate Upload *', ['class' => 'form-label']) !!}
{!! Form::label('coordinator_name','Coordinator Name *', ['class' => 'form-label']) !!} {!! Form::select('coordinator_name',$coordinators,$student->coordinator_name, ['class' => 'form-control','id' => 'coordinator','placeholder' => 'Enter Coordinator Name', 'required']); !!}
{!! Form::label('fees','Fees *', ['class' => 'form-label']) !!} {!! Form::number('fees',$student->fees, ['class' => 'form-control','id' => 'fees','placeholder' => 'Enter fees', 'required', 'readonly']); !!}
{!! Form::label('status','Status *', ['class' => 'form-label']) !!} {!! Form::select('status',['Public'=>'Public','Admin'=>'Admin'],$student->status, ['class' => 'form-control','placeholder' => 'Select status', 'required']); !!}