{!! Form::open([ 'url' => action('App\Http\Controllers\StudentController@update', [$student->id]), 'method' => 'PUT', 'files' => true, 'id' => 'company_add_form', 'enctype' => 'multipart/form-data', ]) !!}
{!! Form::label('cname','Center Name *', ['class' => 'form-label']) !!}
{!! Form::label('cname','Course Name *', ['class' => 'form-label']) !!}
{!! Form::label('fee','Fee*', ['class' => 'form-label']) !!} {!! Form::number('fee',$student->fee, ['class' => 'form-control','id' => 'fee','placeholder' => 'Enter fee', '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','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('aadharno','Aadhar/DL No. *', ['class' => 'form-label']) !!} {!! Form::text('aadharno',$student->aadharno, ['class' => 'form-control','placeholder' => 'Enter Aadhar/DL No.', 'required']); !!}
{!! Form::label('aadharphoto','Front of Aadhar/DL *', ['class' => 'form-label']) !!}
{!! Form::label('aadharphoto_back','Back of Aadhar', ['class' => 'form-label']) !!}
{!! Form::label('center_incharge','Center Incharge *', ['class' => 'form-label']) !!}
{!! Form::label('certifiace_prefix','Certificate Prefix *', ['class' => 'form-label']) !!} {!! Form::text('certifiace_prefix',$student->certifiace_prefix, ['class' => 'form-control','placeholder' => 'Enter Certificate prefix', 'required']); !!}
{!! Form::label('certifiace_no','Certificate no *', ['class' => 'form-label']) !!} {!! Form::number('certifiace_no',$student->certifiace_no, ['class' => 'form-control','placeholder' => 'Enter Certificate no', '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('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('status','Status *', ['class' => 'form-label']) !!} {!! Form::select('status',['Pending'=>'Pending','Active'=>'Active','Reject'=>'Reject'],$student->status, ['class' => 'form-control','placeholder' => 'Select status ?', 'required']); !!}