@extends('hr_main') @section('title', '| '. $data['pageTitle'] ) @section('content')
{!! $data['pageTitle'] !!}
{!! Form::open(array('role' => 'form', 'files' => 'false', 'id' => 'formId', 'class' => 'form-horizontal form-groups')) !!}
{!! Form::select('employee_id', $data['employees'], null, ['class' => 'select2 form-control', 'id' => 'employee_id']) !!}
{!! Form::text('start_from', date('d-m-Y'), ['class' => 'form-control', 'id' => 'start_from', 'readonly' => true]) !!}
{!! Form::text('end_to', '', ['class' => 'datepicker form-control', 'id' => 'end_to']) !!}
{!! Form::textarea('remarks', '', ['class' => 'form-control', 'id' => 'remarks']) !!}
{!! Form::close() !!}
@endsection @section('footerAssets') @endsection