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

Create Candidate Registration Form Using Existing Fields

@php $email_address_value = 'Email'; @endphp @php $mobile_number_value = 'Mobile No'; @endphp @php $fullname_value ='First Name'; @endphp @php $lastname_value = 'Last Name'; @endphp @php $education_value = 'Candidate Education'; $education_check = 0; $education_mandate_check = 0; @endphp @php $degree_value = 'UG Degree'; $degree_check = 0; $degree_mandate_check = 0; @endphp @php $master_degree_value ='Master Degree'; $master_degree_check = 0; $master_degree_mandate_check = 0; @endphp @php $yearofcompletion_value = 'Candidate Year Of Completion'; $yearofcompletion_check = 0; $yearofcompletion_mandate_check = 0; @endphp @php $university_value = 'Candidate University'; $university_check = 0; $university_mandate_check = 0; @endphp @php $skills_value = 'Candidate Skills'; $skills_check = 0; $skills_mandate_check = 0; @endphp @php $gender_value = 'Gender'; $gender_check = 0; $gender_mandate_check = 0; @endphp @php $state_value = 'Candidate State'; $state_check = 0; $state_mandate_check = 0; @endphp @php $date_of_birth_value = 'Date Of Birth'; $date_of_birth_check = 0; $date_of_birth_mandate_check = 0; @endphp @php $passport_number_value = 'Passport No'; $passport_number_check = 0; $passport_mandate_check = 0; @endphp @php $pan_number_value = 'Pan Card No'; $pan_number_check = 0; $pan_mandate_check = 0; @endphp @if(!empty($row)) @foreach($row->customFormDetails as $key => $fields) @if($fields->is_existing_type == 1) @php $is_existing_type = true; @endphp @if($fields->existing_type_id_name == 'email_address_value') @php $email_address_value = $fields->field_name ?? 'Email'; @endphp @endif @if($fields->existing_type_id_name == 'mobile_number_value') @php $mobile_number_value = $fields->field_name ?? 'Mobile No'; @endphp @endif @if($fields->existing_type_id_name == 'fullname_value') @php $fullname_value = $fields->field_name ?? 'First Name'; @endphp @endif @if($fields->existing_type_id_name == 'lastname_value') @php $lastname_value = $fields->field_name ?? 'Last Name'; @endphp @endif @if($fields->existing_type_id_name == 'education_value') @php $education_value = $fields->field_name ?? 'Education'; $education_check = 1; @endphp @if($fields->is_mandatory == 1) @php $education_mandate_check = 1; @endphp @endif @endif @if($fields->existing_type_id_name == 'degree_value') @php $degree_value = $fields->field_name ?? 'Degree'; $degree_check = 1; @endphp @if($fields->is_mandatory == 1) @php $degree_mandate_check = 1; @endphp @endif @endif @if($fields->existing_type_id_name == 'master_degree_value') @php $master_degree_value = $fields->field_name ?? 'Master Degree'; $master_degree_check = 1; @endphp @if($fields->is_mandatory == 1) @php $master_degree_mandate_check = 1; @endphp @endif @endif @if($fields->existing_type_id_name == 'yearofcompletion_value') @php $yearofcompletion_value = $fields->field_name ?? 'Year Of Completion'; $yearofcompletion_check = 1; @endphp @if($fields->is_mandatory == 1) @php $yearofcompletion_mandate_check = 1; @endphp @endif @endif @if($fields->existing_type_id_name == 'university_value') @php $university_value = $fields->field_name ?? 'University'; $university_check = 1; @endphp @if($fields->is_mandatory == 1) @php $university_mandate_check = 1; @endphp @endif @endif @if($fields->existing_type_id_name == 'skills_value') @php $skills_value = $fields->field_name ?? 'Skills'; $skills_check = 1; @endphp @if($fields->is_mandatory == 1) @php $skills_mandate_check = 1; @endphp @endif @endif @if($fields->existing_type_id_name == 'gender_value') @php $gender_value = $fields->field_name ?? 'Gender'; $gender_check = 1; @endphp @if($fields->is_mandatory == 1) @php $gender_mandate_check = 1; @endphp @endif @endif @if($fields->existing_type_id_name == 'state_value') @php $state_value = $fields->field_name ?? 'State'; $state_check = 1; @endphp @if($fields->is_mandatory == 1) @php $state_mandate_check = 1; @endphp @endif @endif @if($fields->existing_type_id_name == 'date_of_birth_value') @php $date_of_birth_value = $fields->field_name ?? 'Date Of Birth'; $date_of_birth_check = 1; @endphp @if($fields->is_mandatory == 1) @php $date_of_birth_mandate_check = 1; @endphp @endif @endif @if($fields->existing_type_id_name == 'passport_number_value') @php $passport_number_value = $fields->field_name ?? 'Passport No'; $passport_number_check = 1; @endphp @if($fields->is_mandatory == 1) @php $passport_mandate_check = 1; @endphp @endif @endif @if($fields->existing_type_id_name == 'pan_number_value') @php $pan_number_value = $fields->field_name ?? 'Pan Card No'; $pan_number_check = 1; @endphp @if($fields->is_mandatory == 1) @php $pan_mandate_check = 1; @endphp @endif @endif @endif @endforeach @endif
Email * :
{!! Form::text("email_address", $email_address_value, ['class' => 'form-control custom_form_label', 'placeholder' => 'Enter Label Name' , 'id' => "email_address_value"]) !!}
Mobile No * :
{!! Form::text("mobile_number", $mobile_number_value, ['class' => 'form-control custom_form_label', 'placeholder' => 'Enter Label Name', 'id' => "mobile_number_value"]) !!}
First Name * :
{!! Form::text("fullname", $fullname_value, ['class' => 'form-control custom_form_label', 'placeholder' => 'Enter Label Name', 'id' => "fullname_value"]) !!}
Last Name
{!! Form::text("lastname", $lastname_value, ['class' => 'form-control custom_form_label', 'placeholder' => 'Enter Label Name' , 'id' => "lastname_value"]) !!}

Optional Fields

Education :
Is Mandatory :
{!! Form::text("education_value", $education_value, ['class' => 'form-control custom_form_label', 'placeholder' => 'Enter Label Name', 'id' => "education_value"]) !!}
Degree :
Is Mandatory :
{!! Form::text("degree_value", $degree_value, ['class' => 'form-control custom_form_label', 'placeholder' => 'Enter Label Name', 'id' => "degree_value"]) !!}
Year Of Completion :
Is Mandatory :
{!! Form::text("yearofcompletion_value", $yearofcompletion_value, ['class' => 'form-control custom_form_label', 'placeholder' => 'Enter Label Name', 'id' => "yearofcompletion_value"]) !!}
University :
Is Mandatory :
{!! Form::text("university_value", $university_value, ['class' => 'form-control custom_form_label', 'placeholder' => 'Enter Label Name', 'id' => "university_value"]) !!}
Skills :
Is Mandatory :
{!! Form::text("skills_value", $skills_value, ['class' => 'form-control custom_form_label', 'placeholder' => 'Enter Label Name', 'id' => "skills_value"]) !!}
State :
Is Mandatory :
{!! Form::text("state_value", $state_value, ['class' => 'form-control custom_form_label', 'placeholder' => 'Enter Label Name', 'id' => "state_value"]) !!}
Master Degree:
Is Mandatory :
{!! Form::text("master_degree_value", $master_degree_value, ['class' => 'form-control custom_form_label', 'placeholder' => 'Enter Label Name', 'id' => "master_degree_value"]) !!}
Gender :
Is Mandatory :
{!! Form::text("gender_value", $gender_value, ['class' => 'form-control custom_form_label', 'placeholder' => 'Enter Label Name', 'id' => "gender_value"]) !!}
Date Of Birth :
Is Mandatory :
{!! Form::text("date_of_birth_value", $date_of_birth_value, ['class' => 'form-control custom_form_label', 'placeholder' => 'Enter Label Name', 'id' => "date_of_birth_value"]) !!}
Passport No :
Is Mandatory :
{!! Form::text("passport_number_value", $passport_number_value, ['class' => 'form-control custom_form_label', 'placeholder' => 'Enter Label Name', 'id' => "passport_number_value"]) !!}
Pan Card No :
Is Mandatory :
{!! Form::text("pan_number_value", $pan_number_value, ['class' => 'form-control custom_form_label', 'placeholder' => 'Enter Label Name', 'id' => "pan_number_value"]) !!}
Previous