{!! Form::text('job_title',"",['class'=>'form-control','placeholder'=>'Ex: Social marketing Manager','id'=>'job-title']) !!}
{!! Form::select('job_industrys',[""=>"Select Job Category "] + $industrys,"",['class'=>'form-control js-select2','id'=>'js-jobcategorytype']) !!}
{!! Form::text('hr_email_address','',array('class'=>'form-control','id'=>'js-hr-email_address','placeholder'=>'Enter Email Address', "tabindex"=>3)) !!}
{{ Form::checkbox("same_corp_email",0, [], array('class' => 'js-email_check_box', 'id' => "same_corp_email")) }}
Same as Corporate Email
{!! Form::select('course_type',[""=>"Select Education "] + $course_types,"",['class'=>'form-control js-select2','id'=>'js-coursetype']) !!}
*
{!! Form::select('degree',["0"=>"Any Degree"],"",['class'=>'form-control js-select2','id'=>'js-degree']) !!}
*
{!! Form::select('specialization',[],"",['class'=>'form-control js-select2','id'=>'js-specialization']) !!}
How it will appear in job details : Candidate should hold any degree(any specialization)
*
Provide interview slots
{!! Form::text('start_date',"",['class'=>'form-control js-date-from','id'=>'js-start-date-from','placeholder'=>'e.g. 14-08-2018','readonly'=>true]) !!}
@if ($errors->has('start_date'))
@endif
{!! Form::text('end_date',"",['class'=>'form-control js-date-to','id'=>'js-date-to','placeholder'=>'e.g. 15-08-2018','readonly'=>true]) !!}
@if ($errors->has('end_date'))
@endif
{!! Form::text('start_time',"",['class'=>'form-control js-time-from','id'=>'js-time-from','placeholder'=>'e.g 10:00 AM']) !!}
@if ($errors->has('start_time'))
@endif
To
{!! Form::text('to_time',"",['class'=>'form-control js-time-to','id'=>'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(',',"")))
@php $interview_slots = explode(',',""); @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->district) && !is_null($company_address->name) && !is_null($company_address->comm_address))
@endif
@if(!is_null($corp_address) && !is_null($corp_address->district) && !is_null($corp_address->name) && !is_null($corp_address->corp_address))
@endif
@if(!empty($row['addressDetails']))
@foreach($row['addressDetails']->where('address_type',3) as $key => $new_address)
@endforeach
@endif
Address:
{{ $company_address->comm_address }}
City:
{{ $company_address->district ?? '' }}.
Region/State:
{{ $company_address->name ?? '' }}.
Address:
{{ $corp_address->corp_address ?? '' }}
City:
{{ $company_address->district ?? '' }}.
Region/State:
{{ $company_address->name ?? '' }}.
Address:
{{ $new_address->address }}
City:
{{ $new_address->cityDetails->district }}
Region/State:
{{ $new_address->stateDetails->name }}
{!! Form::text('poc_name[]',null,['id'=>'poc_name','class'=>'form-control','placeholder'=>'e.g Ashritha Hedge','style'=>'height:40px']) !!}
{!! Form::text('poc_contact[]',null,['id'=>'poc_contact','class'=>'form-control','minlength'=>6 ,'id'=>'poc_contact','maxlength'=>10,'placeholder'=>'e.g 91 5425 74259','style'=>'height:40px']) !!}
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',"",['class'=>'form-control js-date-from','id'=>'js-last-date','placeholder'=>'e.g. 14-08-2018']) !!}
@if ($errors->has('last_date'))
@endif
{!! Form::select('college',[''=>'']+$colleges,"",['id'=>'js-camp-college','data-placeholder'=>'Select College','class'=>'search-select remote-search-select']) !!}
{!! Form::text('assessment_date',"",['class'=>'form-control js-date-from','id'=>'js-camp-assessmentdate','placeholder'=>'e.g. 14-08-2018']) !!}