{!! Form::label("amount_$row_index" ,__('Amount') . ':*') !!}
{!! Form::text("payment[$row_index][amount]", 0, ['class' => 'form-control payment-amount input_number', 'required', 'id' => "amount_$row_index", 'placeholder' => __('Amount')]); !!}
{!! Form::label("method_$row_index" , __('Payment Method') . ':*') !!}
{!! Form::select("payment[$row_index][method]", $payment_types, $payment_line['method'], ['class' => 'form-control col-md-12 payment_types_dropdown', 'id' => "method_$row_index", 'style' => 'width:100%;']); !!}
@include('sale.partial.payment_type_details')
{!! Form::label("note_$row_index", __('Narration') . ':') !!} {!! Form::textarea("payment[$row_index][note]", $payment_line['note'], ['class' => 'form-control', 'rows' => 3, 'id' => "note_$row_index"]); !!}