{!! Form::label('transaction_id', 'Transaction Id:') !!} {!! Form::text('transaction_id', null, ['class' => 'form-control']) !!}
{!! Form::label('customer_id', 'Customer Id:') !!} {!! Form::text('customer_id', null, ['class' => 'form-control']) !!}
{!! Form::label('invoice_date', 'Invoice Date:') !!} {!! Form::date('invoice_date', null, ['class' => 'form-control']) !!}
{!! Form::label('status', 'Currency:') !!} {!! Form::select('currency', $currencys, null, ['class' => 'form-control','placeholder'=> 'Select Value']) !!}
{!! Form::label('invoice1_refno', 'Invoice1 Ref No:') !!} {!! Form::text('invoice1_refno', null, ['class' => 'form-control']) !!}
{!! Form::label('invoice2_refno', 'Invoice2 Ref No:') !!} {!! Form::text('invoice2_refno', null, ['class' => 'form-control']) !!}
{!! Form::label('payment1_refno', 'Payment1 Ref No:') !!} {!! Form::text('payment1_refno', null, ['class' => 'form-control']) !!}
{!! Form::label('payment2_refno ', 'Payment2 Ref No:') !!} {!! Form::text('payment2_refno', null, ['class' => 'form-control']) !!}
{!! Form::label('status', 'Status:') !!} {!! Form::select('status', $paymentStatus, null, ['class' => 'form-control','placeholder'=> 'Select Value']) !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!} Cancel