dbfdg
{{ Form::open(array('route' => array('invoice.credit.note',$invoice_id),'mothod'=>'post')) }}
{{ Form::label('date', __('Date'),['class'=>'form-label']) }}
{{Form::date('date',null,array('class'=>'form-control','required'=>'required'))}}
{{ Form::label('amount', __('Amount'),['class'=>'form-label']) }}
{{ Form::number('amount', !empty($invoiceDue)?$invoiceDue->getDue():0, array('class' => 'form-control','required'=>'required','step'=>'0.01' , 'placeholder'=>__('Enter Amount'))) }}
{{ Form::label('description', __('Description'),['class'=>'form-label']) }}
{!! Form::textarea('description', '', ['class'=>'form-control','rows'=>'3' , 'placeholder'=>__('Enter Description')]) !!}
{{ Form::close() }}