@extends('layouts.admin') @section('page-title') {{__('Create Job')}} @endsection @section('breadcrumb') @endsection @push('css-page') @endpush @push('script-page') @endpush @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']) !!}
{!! 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::text('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 ']) !!}
{!! Form::label('end_date', __('End Date'),['class'=>'form-label']) !!} {!! Form::date('end_date', old('end_date'), ['class' => 'form-control ']) !!}
{{__('Need to ask ?')}}
{{__('Need to show option ?')}}
{{__('Custom Question')}}
@foreach($customQuestion as $question)
@endforeach
{!! Form::label('sescription', __('Job Description'),['class'=>'form-label']) !!}
{!! Form::label('requirement', __('Job Requirement'),['class'=>'form-label']) !!}
{{Form::close()}}
@endsection