@extends("layouts.main") @section('title', trans('core.title_post_job')) @section("content")
Please wait, Loading...
{!! Form::open(['url'=>'job/save-customized-jobs','method'=>'POST','id'=>'js-jobpost-form','autocomplete'=>'off']) !!}
{!! Form::text('job_title',$customized_job_details->job_title ?? '',['class'=>'form-control','placeholder'=>'Ex: Social marketing Manager','id'=>'job_title','maxlength'=>255]) !!}
{!! Form::select('locations[]',$locations,!empty($customized_job_details->loc_ids) ? explode(',',$customized_job_details->loc_ids) : null, ['id' => 'job_locations','class'=> 'form-control js-select2','multiple','data-placeholder'=>'Select Location' ]) !!}
{!! Form::select('industries[]',$industries,!empty($customized_job_details->cat_ids) ? explode(',',$customized_job_details->cat_ids) : null, ['id' => 'job_industries','class'=> 'form-control js-select2','multiple','data-placeholder'=>'Select a Job Category' ]) !!}
{!!Form::textarea('metakey',$customized_job_details->metakey ?? '',['class'=>'form-control','placeholder'=>'Enter Meta Key','id'=>'metakey'])!!}
{!! Form::textarea('metadesc',$customized_job_details->metadesc ?? '',['class'=>'form-control','placeholder'=>'Enter Meta Description','id'=>'metadesc'])!!}
Show Page In Industry List :
listing_required_in_industry) && $customized_job_details->listing_required_in_industry==1) checked @endif>
Show Page In Location List :
listing_required_in_location) && $customized_job_details->listing_required_in_location==1) checked @endif>
Employment Type :
@if(!is_null($emp_types)) @foreach ($emp_types as $e_id=>$type) emp_type?? 5; @endphp @if($emp_type == $e_id) checked @endif type="radio" name="emp_type" value="{{ $e_id }}" /> @endforeach @endif
@if($flag == 0) {!! $component!!} @endif
{!! Form::close() !!}
@endsection