@extends('admin.master') @section('content') @section('title','Job Interview')
@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()) @endif @if(session()->has('success'))
 {{ session()->get('success') }}
@endif @if(session()->has('error'))
 {{ session()->get('error') }}
@endif
{{$results->applicant_name}}
{!! Form::text('interview_date',Input::old('interview_date'), $attributes = array('class'=>'form-control required dateField','id'=>'interview_date','placeholder'=>'Enter interview date','readonly')) !!}
{!! Form::text('interview_time',Input::old('interview_time'), $attributes = array('class'=>'form-control required timePicker','id'=>'timePicker','placeholder'=>'Enter time','readonly')) !!}
{{ 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...')) !!}
{{ Form::close() }} @else

Job application not found....

@endif
@endsection @section('page_scripts') @endsection