@extends('layouts.app') @section('content') @include('includes.header') @include('includes.inner_page_title', ['page_title'=>__('Submit Your Job Application')])
@include('flash::message')
{!! Form::open(array('method' => 'post', 'route' => ['post.apply.job', $job_slug])) !!}
{{__('You are about to apply for the job')}}: {{$job->title}}
{!! Form::select('cv_id', [''=>__('Select CV')]+$myCvs, null, array('class'=>'form-control', 'id'=>'cv_id')) !!} @if ($errors->has('cv_id')) {{ $errors->first('cv_id') }} @endif
{!! Form::number('current_salary', null, array('class'=>'form-control', 'id'=>'current_salary', 'placeholder'=>__('Current salary').' ('.$job->getSalaryPeriod('salary_period').')' )) !!} @if ($errors->has('current_salary')) {{ $errors->first('current_salary') }} @endif
{!! Form::number('expected_salary', null, array('class'=>'form-control', 'id'=>'expected_salary', 'placeholder'=>__('Expected salary').' ('.$job->getSalaryPeriod('salary_period').')')) !!} @if ($errors->has('expected_salary')) {{ $errors->first('expected_salary') }} @endif
{!! Form::text('salary_currency', Request::get('salary_currency', $siteSetting->default_currency_code), array('class'=>'form-control', 'id'=>'salary_currency', 'placeholder'=>__('Salary Currency'), 'autocomplete'=>'off')) !!} @if ($errors->has('salary_currency')) {{ $errors->first('salary_currency') }} @endif

{!! Form::close() !!}
@include('includes.footer') @endsection @push('scripts') @endpush