@extends('layouts.front-page') @section('pageTitle', 'HireMee Jobs') @section('content')
{!! $job->about_job !!}

What will you do

{!! $job->job_desc !!}

What we are looking for

{!! $job->job_requirement !!}
{!! Form::open(['url'=>secure_url('job-applied-store'),'method'=>'post','id'=>'js-jobapply-form','autocomplete'=>'off','files' => true, 'enctype' => 'multipart/form-data',]) !!}
{!! Form::text('name','',array('class'=>'form-control career-input','id'=>'js-career-name','placeholder'=>'Enter Your Name','maxlength'=>30, "tabindex"=>1)) !!}
{!! Form::text('mobile_number','',array('class'=>'form-control career-input','id'=>'js-career-mobile','placeholder'=>'Enter Your Mobile Number','maxlength'=>10, "tabindex"=>4)) !!}
{!! Form::text('dob','',array('class'=>'form-control career-input js-date-dob','id'=>'js-career-dob','placeholder'=>'Enter Your DOB', "tabindex"=>2)) !!}
{!! Form::select("gender",['0'=>'Female','1'=>'Male'],'',array("class"=>"","id"=>"js-career-gender",'placeholder' => 'Choose Gender', "tabindex"=>3)) !!}
{!! Form::email('email',null,array('class'=>'form-control career-input','id'=>'js-career-email','placeholder'=>'Enter Your Email Address','maxlength'=>"30", "tabindex"=>5)) !!}
{{Form::hidden('id',$job->id,array('class'=>'form-control ','id'=>'js-jobs_id'))}}
{!! Form::button('', ['type' => 'button', 'class' => 'input-group-addon input-group-addon right-border-radius c-p','id'=>'_submit'] ) !!}
Cancel
{!! Form::close() !!}
@endsection @section('footer') @endsection