@extends("layouts.main") @section("custom_style") @endsection @section('title', $pageTitle) @section("content")

Candidate's Qualifications

{!! Form::open(['url'=>'job/save','method'=>'POST','id'=>'js-jobpost-form2']) !!} {!! Form::hidden('step',2) !!} {!! Form::hidden('id',$id) !!} {!! Form::hidden('qualification_tags',$row['qualification_tags'],['id'=>'js-qualifications']) !!} @if ($errors->any())
{{ implode('', $errors->all('
')) }}
@endif
{!! Form::select('course_type',[""=>"Select Education "] + $course_types,$row['course_type'],['class'=>'form-control js-select2','id'=>'js-coursetype']) !!}
{!! Form::select('degree',["0"=>"Any Degree"],$row['degree'],['class'=>'form-control js-select2','id'=>'js-degree']) !!}
{!! Form::select('specialization',["0"=>"Any Specialization"],$row['specialization'],['class'=>'form-control js-select2','id'=>'js-specialization']) !!}

How it will appear in job details : Candidate should hold any degree(any specialization)

{!! Form::text('qualifications',$row['qualification'],['class'=>'form-control h-100 l-h-30 ','id'=>'js-qualification-tags','readonly'=>true]) !!}

Skills*

Candidate must possess following skills (mandatory skills) :
Start typing here e.g.Java, Angular Js, React

{!! Form::select('job_skills[]',$skills,!empty($row['skills']) ? $row['skills']->pluck('skill_id')->toArray() : null,['class'=>'form-control js-select2','multiple'=>true,'id'=>'js-skill','data-placeholder'=>'e.g.Java, Angular Js, React']) !!}

Addtional preferred skills (optional skills) :
Start typing here e.g.Java, Angular Js, React

{!! Form::select('additional_skills[]',$skills,!empty($row['addtionalSkills']) ? $row['addtionalSkills']->pluck('skill_id')->toArray() : null,['class'=>'form-control js-select2','multiple'=>true,'data-placeholder'=>'e.g.Java, Angular Js, React','id'=>'js-add-skill']) !!}

languages

@if(!empty($row['languageDetails'])) @forelse($row['languageDetails'] as $key => $language)
{!! Form::select('lang['.$key.'][language_known]',[''=>'Select Language'] + $languageknowns,$language->lang_id,['class'=>'form-control js-select2 js-languages js-lang-element','id'=>'js-lang['.$key.'][known]','data-placeholder'=>'Select Language']) !!}
{!! Form::select('lang['.$key.'][proficiency]',[''=>'','1'=>'Expert','2'=>'Advanced','3'=>'Intermediate'],$language->proficiency,['class'=>'form-control js-select2 js-lang-element js-lang-prof','id'=>'js-lang['.$key.'][proficiency]', 'data-placeholder'=>'Select Proficiency']) !!}
@empty
{!! Form::select('lang[0][language_known]',[''=>'Select Language'] + $languageknowns,null,['class'=>'form-control js-select2 js-languages js-lang-element','id'=>'js-lang[0][language_known]','data-placeholder'=>'Select Language']) !!}
{!! Form::select('lang[0][proficiency]',[''=>'','1'=>'Expert','2'=>'Advanced','3'=>'Intermediate'],null,['class'=>'form-control js-select2 js-lang-element js-lang-prof','id'=>'js-lang[0][proficiency]','data-placeholder'=>'Select Proficiency']) !!}
@endforelse @endif

Candidate's Personal Details

@php $genders = HireMeeHelper::JobGenders(); @endphp @foreach ($genders as $g_id=>$type) first)) checked @endif type="radio" name="gender" value="{{ $g_id }}" /> @endforeach

Additional Requirements

@forelse(explode(',', $row['other_requirements']) as $key => $other_requirement)
{!! Form::text('other_requirements[]',$other_requirement,['class'=>'form-control js-req-text','placeholder'=>'Candidate should join within 15 days of accepting offer']) !!}
@empty
{!! Form::text('other_requirements[]',null,['class'=>'form-control js-req-text','placeholder'=>'Candidate should join within 15 days of accepting offer']) !!}
@endforelse
Previous @if($row['is_post_completed'] > 1)
{!! Form::close() !!}
@endsection