@extends('client.layout') @section('title') {{translate('add guarantor')}} @endsection @section('content')

{{translate('add guarantor')}}

{!! Form::open(array('url' => url('client/application/'.$loan_application->id.'/guarantor/store'), 'method' => 'post','class'=>'', 'name' => 'form',"enctype"=>"multipart/form-data")) !!}
@if(isset($_REQUEST['return_url'])) @endif
{!! Form::label('guarantor_id',translate('guarantor'),array('class'=>' control-label')) !!} {!! Form::select('guarantor_id',$borrowers,null, array('class' => 'form-control select2','placeholder'=>'','required'=>'required')) !!}
{!! Form::label('amount',translate('amount'),array('class'=>'')) !!} {!! Form::text('amount',$loan_application->amount, array('class' => 'form-control touchspin', 'id'=>"amount",'required'=>'required')) !!}
{!! Form::close() !!}
@endsection @section('footer-scripts') @endsection