@if(count($results) > 0)
Job Name :
{{$results->job->job_title}}
@endif
@if(session()->has('success'))
{{ session()->get('success') }}
@endif
@if(session()->has('error'))
{{ session()->get('error') }}
@endif
@if(count($results) > 0)
{{ Form::open( array('route' => array('applicant.jobInterviewStore', $results->job_applicant_id), 'files' => 'true','id' => 'workShiftForm')) }}
@if($errors->any())
@foreach($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
@if(session()->has('success'))
{{ session()->get('success') }}
@endif
@if(session()->has('error'))
{{ session()->get('error') }}
@endif
{{$results->applicant_name}}
{{ Form::select('interview_type', array('Email' => 'Email'), Input::old('interview_type'), array('class' => 'form-control interview_type select2 required')) }}
{!! Form::textarea('comment',Input::old('comment'), $attributes = array('class'=>'form-control textarea_editor required','rows'=>'8','id'=>'comment','placeholder'=>'Enter comment...')) !!}