@extends('layouts.admin') @section('page-title') {{__('Edit Job')}} @endsection @push('css-page') @endpush @section('breadcrumb') @endsection @push('script-page') @endpush @section('content') {{Form::model($job,array('route' => array('job.update', $job->id), 'method' => 'PUT')) }}
{!! Form::label('title', __('Job Title'),['class'=>'form-label']) !!} {!! Form::text('title', null, ['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', null, ['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', null, ['class' => 'form-control ']) !!}
{!! Form::label('end_date', __('End Date'),['class'=>'form-label']) !!} {!! Form::date('end_date', null, ['class' => 'form-control ']) !!}
{{__('Need to ask ?')}}
applicant)?'checked':'')}}>
applicant)?'checked':'')}}>
applicant)?'checked':'')}}>
{{__('Need to show option ?')}}
visibility)?'checked':'')}}>
visibility)?'checked':'')}}>
visibility)?'checked':'')}}>
visibility)?'checked':'')}}>
{{__('Custom Question')}}
@foreach($customQuestion as $question)
id,$job->custom_question)?'checked':'')}}>
@endforeach
{!! Form::label('description', __('Job Description'),['class'=>'form-label']) !!}
{!! Form::label('requirement', __('Job Requirement'),['class'=>'form-label']) !!}
{{Form::close()}}
@endsection