{{Form::open(array('url'=>'attendanceemployee','method'=>'post'))}}
{{Form::label('employee_id',__('Employee'))}} {{Form::select('employee_id',$employees,null,array('class'=>'form-control select2'))}}
{{Form::label('date',__('Date'))}} {{Form::text('date',null,array('class'=>'form-control datepicker'))}}
{{Form::label('clock_in',__('Clock In'))}} {{Form::time('clock_in',null,array('class'=>'form-control '))}}
{{Form::label('clock_out',__('Clock Out'))}} {{Form::time('clock_out',null,array('class'=>'form-control '))}}
{{Form::close()}}