{!! Form::text('interview_date', null, array('placeholder' => 'Date', 'id' => 'interview_date', 'class' => 'form-control interviewDatePicker','autocomplete' => 'off')) !!}
@php $start=strtotime('00:00'); $end=strtotime('23:30'); for ($i=$start;$i<=$end;$i = $i + 15*60) { $time[date('H:i A',$i)] = date('H:i A',$i); } @endphp {!! Form::select('interview_time', $time, null, array('placeholder' => 'Time', 'class'=>'form-control')) !!}
{!! Form::select('interview_timezone', timeZoneList(), array_search("Asia/Kolkata", timeZoneList()), array('placeholder' => 'Timezone', 'class'=>'form-control')) !!}
@php $start=strtotime('00:15'); $end=strtotime('10:00'); for ($i=$start;$i<=$end;$i = $i + 15*60) { $intertime[date('H:i',$i)] = date('H:i',$i); } @endphp {!! Form::select('interview_duration', $intertime, null, array('placeholder' => 'Duration (in mins)', 'class'=>'form-control')) !!}
{!! Form::email('interviewer', null, array('placeholder' => 'Interviewer', 'id' => 'interviewer_id', 'class' => 'form-control','autocomplete' => 'off')) !!}
{!! Form::textarea('notes', "", array('placeholder' => 'notes', 'class' => 'form-control', 'id' => 'interviewNotes', 'rows' => 5)) !!}
{!! Form::radio('interview_status', "Scheduled", "Scheduled", array('id' => 'interviewScheduled')) !!}
{!! Form::radio('interview_status', "Completed", null, array('id' => 'interviewCompleted')) !!}
{!! Form::radio('interview_status', "Cancelled", null, array('id' => 'interviewCancelled')) !!}