@extends('layouts.default') @section('title', 'Create Job') @section('header-links') @include('includes.headers.jobs') @endsection @section('new_button') remove_red_eye Job list @endsection @section('content')
{{ Form::open(['route'=>'jobs.store', 'method'=>'POST', 'role'=>'form']) }} Job Details
{{ Form::textGroup('title', 'Job Title', null, ['id'=>'title', 'required'=>'required', 'maxlength'=>'100']) }}
{!! Form::selectGroup('country_id', 'Country', $countries, null, ['id'=>'country_1', 'data-live-search'=>'true', 'required'=>'required', 'onchange'=>'getStates(1)']) !!}
{!! Form::selectGroup('state_id', 'State', $states, null, ['id'=>'state_1', 'data-live-search'=>'true', 'required'=>'required', 'onchange'=>'getCities(1)']) !!}
{!! Form::selectGroup('city_id', 'City', $cities, null, ['id'=>'city_1', 'data-live-search'=>'true', 'required'=>'required']) !!}
{{ Form::numberGroup('min_experience', 'Min Experience', null, ['id'=>'min_experience', 'maxlength'=>'2']) }}
{{ Form::textGroup('max_experience', 'Max Experience', null, ['id'=>'max_experience','maxlength'=>'2']) }}
{!! Form::selectGroup('interview_mode', 'Interview Mode', $interview_modes, null, ['id'=>'interview_mode', 'required'=>'required', 'required'=>'required']) !!}
{!! Form::selectGroup('employment_type', 'Employment Type', $employment_types, null, ['id'=>'employment_type', 'required'=>'required', 'required'=>'required']) !!}
{{ Form::numberGroup('min_payrate', 'Min. Pay Rate', null, ['id'=>'min_payrate', 'maxlength'=>'2']) }}
{{ Form::numberGroup('max_payrate', 'Max. Pay Rate', null, ['id'=>'max_payrate', 'maxlength'=>'2']) }}
{!! Form::selectGroup('status', 'Job Status', ['0'=>'Open', '1'=>'Closed', '2'=>'Pending'], null, ['id'=>'status', 'required'=>'required']) !!}
{!! Form::selectGroup('technology_id', 'Job Technlogy', $technologies, null, ['id'=>'technology_id', 'required'=>'required', 'data-live-search'=>'true']) !!}
{{ Form::textareaGroup('internal_message', 'Internal Message', null, ['id'=>'internal_message', 'rows'=>'2']) }}
{{ Form::textareaGroup('interview_address', 'Interview Address', null, ['id'=>'interview_address', 'rows'=>'2']) }}
{{ Form::textareaGroup('description', 'Job Description', null, ['id'=>'description']) }}
Vendor and Client Details
{{ Form::selectGroup('vendor_company_id', 'Vendor company', $vendor_Companies, null, ['data-live-search'=>'true'])}}
{{ Form::selectGroup('vendor_id', 'Vendor', $vendors, null, ['required'=>'required','data-live-search'=>'true'])}}
{{ Form::selectGroup('client_id', 'Client', $clients, null, ['required'=>'required','data-live-search'=>'true'])}}
{{ Form::selectGroup('implementor_id', 'Implementor', $implementors, null, ['required'=>'required'])}}
{{ Form::saveButton('Save') }}
{{ Form::close() }}
@include('includes.country-state-city-script') @stop