JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@php $plan = Utility::getChatGPTSettings(); @endphp @extends('layouts.admin') @section('page-title') {{ __('Create Job') }} @endsection @push('css-page') @endpush @push('script-page') @endpush @section('breadcrumb') @endsection @section('content')
@if ($plan->enable_chatgpt == 'on')
{{ __(' Generate With AI') }}
@endif {{ Form::open(['url' => 'job', 'method' => 'post']) }}
{!! Form::label('title', __('Job Title'), ['class' => 'col-form-label']) !!}* {!! Form::text('title', old('title'), [ 'class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter job title', ]) !!}
{!! Form::label('branch', __('Branch'), ['class' => 'col-form-label']) !!}* {{ Form::select('branch', $branches, null, ['class' => 'form-control', 'required' => 'required']) }}
{!! Form::label('category', __('Job Category'), ['class' => 'col-form-label']) !!}* {{ Form::select('category', $categories, null, ['class' => 'form-control', 'required' => 'required']) }}
{!! Form::label('position', __('No. of Positions'), ['class' => 'col-form-label']) !!}* {!! Form::number('position', old('positions'), [ 'class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter job Positions', ]) !!}
{!! Form::label('status', __('Status'), ['class' => 'col-form-label']) !!} {{ Form::select('status', $status, null, ['class' => 'form-control', 'required' => 'required']) }}
{!! Form::label('start_date', __('Start Date'), ['class' => 'col-form-label']) !!} {!! Form::date('start_date', old('start_date'), [ 'class' => 'form-control current_date', 'autocomplete' => 'off', ]) !!}
{!! Form::label('end_date', __('End Date'), ['class' => 'col-form-label']) !!} {!! Form::date('end_date', old('end_date'), ['class' => 'form-control current_date', 'autocomplete' => 'off']) !!}
*
{{ __('Need to Ask ?') }}
{{ __('Need to show Option ?') }}
{{ __('Custom Questions') }}
@foreach ($customQuestion as $question)
is_required == 'yes') required @endif id="custom_question_{{ $question->id }}">
@endforeach
{!! Form::label('description', __('Job Description'), ['class' => 'col-form-label']) !!}
{!! Form::label('requirement', __('Job Requirement'), ['class' => 'col-form-label']) !!} @if ($plan->enable_chatgpt == 'on') {{ __('Grammar check with AI') }} @endif
{!! Form::label('terms_and_conditions', __('Terms And Conditions'), ['class' => 'col-form-label']) !!}
{{ Form::close() }}
@endsection @push('script-page') @endpush