{!! Form::label('loan_type', 'Loan Type:') !!}
{!! Form::select('loan_type', $transactionData['loan_types'], null, ['placeholder' => Lang::get('customer.please_select'),'class' => 'form-control','id' => 'loan_type'] ) !!}
{!! Form::label('loan_amount', 'Loan Amount:') !!}
{!! Form::label('currency_type', 'Currency Type:') !!}
{!! Form::select('currency_type', $transactionData['currency_types'], null, ['placeholder' => Lang::get('customer.please_select'),'class' => 'form-control','id' => 'currency_type'] ) !!}
{!! Form::label('loan_start_date', 'Loan Start Date:') !!}
{!! Form::text('mortgage_start_date', null, array('class' => 'form-control required','id'=>'mortgage_start_date')) !!}
{!! Form::label('loan_end_date', 'Loan End Date:') !!}
{!! Form::text('mortgage_end_date', null, array('class' => 'form-control required','id'=>'mortgage_end_date')) !!}