dbfdg @extends('layouts.admin') @section('page-title') {{__('Create Job')}} @endsection @section('breadcrumb') @endsection @push('css-page') @endpush @push('script-page') @endpush @php $plan= \App\Models\Utility::getChatGPTSettings(); @endphp @section('action-btn')
{{-- start for ai module--}} @if($plan->chatgpt == 1) {{__('Generate with AI')}} @endif {{-- end for ai module--}}
@endsection @section('content') {{Form::open(array('url'=>'job','method'=>'post'))}}
{!! Form::label('title', __('Job Title'),['class'=>'form-label']) !!} {!! Form::text('title', old('title'), ['class' => 'form-control','required' => 'required' , 'placeholder'=>__('Enter Job Title')]) !!}
{!! Form::label('branch', __('Branch'),['class'=>'form-label']) !!} {{ Form::select('branch', $branches,null, array('class' => 'form-control select','required'=>'required')) }}
{!! Form::label('category', __('Job Category'),['class'=>'form-label']) !!} {{ Form::select('category', $categories,null, array('class' => 'form-control select','required'=>'required')) }}
{!! Form::label('position', __('Positions'),['class'=>'form-label']) !!} {!! Form::number('position', old('positions'), ['class' => 'form-control','required' => 'required']) !!}
{!! Form::label('status', __('Status'),['class'=>'form-label']) !!} {{ Form::select('status', $status,null, array('class' => 'form-control select','required'=>'required')) }}
{!! Form::label('start_date', __('Start Date'),['class'=>'form-label']) !!} {!! Form::date('start_date', old('start_date'), ['class' => 'form-control ','required' => 'required' ]) !!}
{!! Form::label('end_date', __('End Date'),['class'=>'form-label']) !!} {!! Form::date('end_date', old('end_date'), ['class' => 'form-control ','required' => 'required' ]) !!}
{{__('Need to ask ?')}}
{{__('Need to show option ?')}}
{{__('Custom Question')}}
@foreach($customQuestion as $question)
@endforeach
{!! Form::label('description', __('Job Description'),['class'=>'form-label']) !!}
{!! Form::label('requirement', __('Job Requirement'),['class'=>'form-label' , 'placeholder'=>__('Enter Job Requirement'),'required' => 'required' ]) !!}
@if($plan->chatgpt == 1) {{__('Grammar check with AI')}} @endif
{{Form::close()}}
@endsection