{!! Form::hidden('reg_form_id',$id,['id'=>'reg_form_id']) !!}

Create Your Own Candidate Registration Form

{!! Form::hidden('id',$id,['id'=>'id']) !!} {!! Form::hidden('step',3,['id'=>'step']) !!} {!! Form::hidden('is_update',$is_update,['id'=>'is_update']) !!}
Enable Custom form :
@php $is_custom_form = false @endphp @if(!empty($row)) @if($row->is_custom_form) @php $is_custom_form = true; @endphp @else @php $is_custom_form = false; @endphp @endif @else @php $is_custom_form = false; @endphp @endif
@if($is_editable) {{ Form::checkbox('is_customform', 1, $is_custom_form, array('class'=>'hme-pro-switch-label','id'=>'is_custom_form')) }} @else {{ Form::checkbox('is_customform', 1, $is_custom_form, array('class'=>'hme-pro-switch-label','id'=>'is_custom_form', 'disabled' => true)) }} @endif
Custome Choice * :
@if(!empty($job_reg_mapping) && !$is_editable) {!! Form::hidden("custom_setting",$job_reg_mapping->custom_form_choice,[]) !!} @endif
Previous