{!! Form::open([ 'url' => action('App\Http\Controllers\EnrollController@update', [$enroll->id]), 'method' => 'PUT', 'files' => true, 'id' => 'company_add_form', 'enctype' => 'multipart/form-data', ]) !!}
{!! Form::label('cname','Center Name *', ['class' => 'form-label']) !!}
{!! Form::label('cid','Candidate Name *', ['class' => 'form-label']) !!}
{!! Form::label('cname','Course Name *', ['class' => 'form-label']) !!}
{!! Form::label('period_from','Period From *', ['class' => 'form-label']) !!} {!! Form::date('period_from',$enroll->period_from, ['class' => 'form-control','id' => 'period_from','placeholder' => 'Enter mobile number', 'required']); !!}
{!! Form::hidden('duration',null, ['id'=>'duration']); !!} {!! Form::label('period_to','Period To *', ['class' => 'form-label']) !!} {!! Form::date('period_to',$enroll->period_to, ['class' => 'form-control','id' => 'period_to','placeholder' => 'Enter address', 'required','readonly']); !!}
{!! Form::label('certifiace_prefix','Certifiace Prefix *', ['class' => 'form-label']) !!} {!! Form::text('certifiace_prefix',$enroll->certifiace_prefix, ['class' => 'form-control','placeholder' => 'Enter state', 'required']); !!}
{!! Form::label('certifiace_no','Certifiace No *', ['class' => 'form-label']) !!} {!! Form::number('certifiace_no',$enroll->certifiace_no, ['class' => 'form-control','placeholder' => 'Enter state', 'required']); !!}
{!! Form::label('enrollment_no','Enrollment No *', ['class' => 'form-label']) !!} {!! Form::number('enrollment_no',$enroll->enrollment_no, ['class' => 'form-control','placeholder' => 'Enter state', 'required']); !!}
{!! Form::label('certificate_issue_date','Certificate Issue Date *', ['class' => 'form-label']) !!} {!! Form::date('certificate_issue_date',$enroll->certificate_issue_date, ['class' => 'form-control','placeholder' => 'Enter state', 'required']); !!}
{!! Form::label('certificate_valid_upto','Certificate Valid Upto *', ['class' => 'form-label']) !!} {!! Form::date('certificate_valid_upto',$enroll->certificate_valid_upto, ['class' => 'form-control','placeholder' => 'Enter state', 'required']); !!}
{!! Form::label('acd','ACD *', ['class' => 'form-label']) !!} {!! Form::text('acd',$enroll->acd, ['class' => 'form-control','placeholder' => 'Enter state', 'required']); !!}
{!! Form::label('hologram_serial_no','Hologram Serial No *', ['class' => 'form-label']) !!} {!! Form::text('hologram_serial_no',$enroll->hologram_serial_no, ['class' => 'form-control','placeholder' => 'Enter state', 'required']); !!}
{!! Form::label('status','Status *', ['class' => 'form-label']) !!} {!! Form::select('status',['Pending'=>'Pending', 'Active'=>'Active', 'Inactive'=>'Inactive'],$enroll->status, ['class' => 'form-control','placeholder' => 'Select status', 'required']); !!}