Add Lien Details

{!! 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::text('mortgage_amount', null, array('class' => 'form-control required','id'=>'mortgage_amount', 'onkeypress' => 'javascript:return isNumber(event)')) !!}
{!! 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')) !!}
{!! Form::select('period_year',$transactionData['loan_periods_years'], null, ['placeholder' => Lang::get('Please Select Years'),'class' => 'form-control','id' => 'period_year', 'onchange' => 'endDate()'] ) !!}
{!! Form::select('period_month',$transactionData['loan_periods_months'], null, ['placeholder' => Lang::get('Please Select Month'),'class' => 'form-control','id' => 'period_month', 'onchange' => 'endDate()'] ) !!}