@extends('admin.layout.app') @section('title','Edit Employee Over Time') @push('headerscript') @endpush @section('content')

Edit Employee Over Time

{!! Form::open(['route'=>array('employee-over-time.update', $employee_ot->id), 'onsubmit'=>'BtnSubmit.disabled = true','method' => 'put']) !!}
{{$errors->first('voucher_no')}}
{!! Form::select("employee_id", [''=>'Select']+$employees, old("employee_id",$employee_ot->employee_id), ['class'=>'form-control', 'required', 'id'=>'employee_id'] ) !!}
{{$errors->first('employee_id')}}
{{$errors->first('date')}}
{{$errors->first('ot_hours')}}
{{$errors->first('ot_rate')}}
{{$errors->first('ot_amount')}}
{{$errors->first('remarks')}}
{!! Form::close() !!}
@endsection @push('footerscript') @endpush