dbfdg
{{Form::open(array('url'=>'allowance','method'=>'post'))}}
{{ Form::hidden('employee_id',$employee->id, array()) }}
{{ Form::label('allowance_option', __('Allowance Options'),['class'=>'form-label']) }}*
{{ Form::select('allowance_option',$allowance_options,null, array('class' => 'form-control select','required'=>'required')) }}
{{ Form::label('title', __('Title'),['class'=>'form-label']) }}
{{ Form::text('title',null, array('class' => 'form-control','required'=>'required')) }}
{{ Form::label('type', __('Type'), ['class' => 'form-label']) }}
{{ Form::select('type', $Allowancetypes, null, ['class' => 'form-control select amount_type', 'required' => 'required']) }}
{{ Form::label('amount', __('Amount'),['class'=>'form-label amount_label']) }}
{{ Form::number('amount',null, array('class' => 'form-control ','required'=>'required','step'=>'0.01')) }}
{{ Form::close() }}