@extends('layouts.front') @section('class_act_jobs') active @endsection @section('header_bottom_part')
@endsection @section('content')
{{ Form::model($jobs, array('name'=>'myform', 'id'=>'infoform', 'class'=>'infoform'), array('route' => array('jobs.editjob', $hash))) }}
{{ Form::radio('department', '0', '') }} {{ Form::radio('department', '1', '') }} {{ Form::radio('department', '2', '') }} {{ Form::radio('department', '3', '') }} {{ Form::radio('department', '4', true) }}
{{ Form::label('rank_id', 'Rank') }} {{ Form::text('shore_rank', Input::old('shore_rank'))}}

Job Details

{{ Form::textarea('comments_qualification', Input::old('comments_qualification'), array("placeholder"=>"Please Mention Key Responsibilities etc","id"=>"comments_qualification")) }}
{{ Form::radio('contract_type', '1', '') }}
{{ Form::radio('contract_type', '0', true) }}
{{ Form::text('salary_offered', Input::old('salary_offered'), array('class'=>'form-control number')) }}
{{ Form::select('currency_code', $currency, Input::old('currency_code'), array('id'=>'currency')) }}
{{ Form::text('joining_date', Input::old('joining_date'), array('class'=>'form-control getuserdate')) }}

Job Requirements

{{ Form::textarea('comments_contact', Input::old('comments_contact'), array("placeholder"=>"Please Mention Education and Work Experience Requirement etc","id"=>"comments_contact")) }}
{{ Form::close() }}
@include('partials.advertisementsidebar')
@stop