@extends("layouts.main") @section('title', trans('core.title_post_job')) @section("content")
{!! Form::open(['url'=>'job/save','method'=>'POST','id'=>'js-jobpost-form3']) !!} {!! Form::hidden('step',3) !!} {!! Form::hidden('id',$id) !!} {!! Form::hidden('',!empty($row->addressDetails) ? $row->addressDetails->where('address_type',1)->pluck('address_id') : null,['id'=>'js-company-address-id']) !!} {!! Form::hidden('',!empty($row->addressDetails) ? $row->addressDetails->where('address_type',2)->pluck('address_id') : null,['id'=>'js-branch-address-id']) !!} @php $interview_process = old('interview_process', $row['interview_process']); @endphp

Interview Type

is_post_completed == '4') disabled="" @endif @endif/> is_post_completed == '4') disabled="" @endif @endif/> is_post_completed == '4') disabled="" @endif @endif/>

Date and Timing

{!! Form::text('start_date',$row['start_date'],['class'=>'form-control js-date-from','placeholder'=>'e.g. 14-08-2018','readonly'=>true]) !!} @if ($errors->has('start_date')) @endif
{!! Form::text('end_date',$row['end_date'],['class'=>'form-control js-date-to','placeholder'=>'e.g. 15-08-2018','readonly'=>true]) !!} @if ($errors->has('end_date')) @endif
{!! Form::text('start_time',$row['start_time'],['class'=>'form-control js-time-from','placeholder'=>'e.g 10:00 AM']) !!} @if ($errors->has('start_time')) @endif
To
{!! Form::text('to_time',$row['to_time'],['class'=>'form-control js-time-to','placeholder'=>'e.g 05:00 PM']) !!} @if ($errors->has('to_time')) @endif
@php $slot_days = HireMeeHelper::JobInterviewSlots(); @endphp @if(is_array(explode(',',$row['interview_slots']))) @php $interview_slots = explode(',',$row['interview_slots']); @endphp @else @php $interview_slots = []; @endphp @endif @foreach($slot_days as $key => $day)
@endforeach
@if ($errors->has('company_address') && $errors->has('branch_address') && $errors->has('new_address')) @endif
By default Registered company address will be shared with candidate, if you want to use different address click below Add New Address button.
@if(!is_null($company_address) && !is_null($company_address->comm_city) && !is_null($company_address->comm_state))
Address:
{{ $company_address->comm_address }}
City:
{{ $company_address->commCity->district ?? '' }}.
Region/State:
{{ $company_address->commState->name ?? '' }}.
Address:
{{ $company_address->corp_address ?? '' }}
City:
{{ $company_address->corpCity->district ?? '' }}.
Region/State:
{{ $company_address->corpState->name ?? '' }}.
@forelse($company_address->branch as $branch_address)
Address:
{{ $branch_address->address }}
City:
{{ $branch_address->cityDetails->district }}.
Region/State:
{{ $branch_address->stateDetails->name }}.
@empty @endforelse @endif @if(!empty($row['addressDetails'])) @foreach($row['addressDetails']->where('address_type',3) as $key => $new_address)
Address:
{{ $new_address->address }}
City:
{{ $new_address->cityDetails->district }}
Region/State:
{{ $new_address->stateDetails->name }}
@endforeach @endif
@if(!empty($row['pocDetails'])) @forelse($row['pocDetails'] as $poc)
{!! Form::text('poc_name[]',$poc->poc_name,['class'=>'form-control','placeholder'=>'e.g Ashritha Hedge']) !!} @if($errors->has('poc_name.0')) @endif
{!! Form::text('poc_contact[]',$poc->poc_contact,['class'=>'form-control','minlength'=>6 , 'maxlength'=>10,'placeholder'=>'e.g 91 5425 74259']) !!} @if($errors->has('poc_contact.0')) @endif
@empty
{!! Form::text('poc_name[]',null,['class'=>'form-control','placeholder'=>'e.g Ashritha Hedge']) !!} @if($errors->has('poc_name.0')) @endif
{!! Form::text('poc_contact[]',null,['class'=>'form-control','minlength'=>6 , 'maxlength'=>10,'placeholder'=>'e.g 91 5425 74259']) !!} @if ($errors->has('poc_contact.0')) @endif
@endforelse @endif

Your job requirement will posted and you will re-directed to list of HireMee suggested student, who full fills job Requirements, and you can check applications under Job-> Application section.

{!! Form::text('last_date',$row['last_date'],['class'=>'form-control js-date-from','placeholder'=>'e.g. 14-08-2018']) !!} @if ($errors->has('last_date')) @endif
is_post_completed == 4) disabled @endif--}}>
@php $college_id = $row->driveDetails ? $row->driveDetails->college_id : ""; @endphp {!! Form::select('college',[''=>'']+$colleges,$college_id,['id'=>'js-camp-college','data-placeholder'=>'Select College','class'=>'search-select remote-search-select']) !!}
{!! Form::text('assessment_date',$row['assessment_date'],['class'=>'form-control js-date-from','id'=>'js-camp-assessmentdate','placeholder'=>'e.g. 14-08-2018']) !!}
Previous @if($row['is_post_completed'] > 2) @endif
{!! Form::close() !!}

Add New Venue Address

{!! Form::select('state',[''=>'Select Region / State'] + $states,null,['class'=>'form-control js-select2','id'=>'js-address-state','data-placeholder'=>'Select Region / State']) !!}
{!! Form::select('city',[''=>'Select City'],null,['class'=>'form-control js-select2','id'=>'js-address-city','data-placeholder'=>'Select City']) !!}

Add New Point of Contact

@endsection