@extends('layouts.master') @section('title') {{translate('add repayment method')}} @endsection @section('content')
{{translate('add repayment method')}}
{!! Form::open(array('url' => url('loan/loan_repayment_method/store'), 'method' => 'post', 'class' => 'form-horizontal')) !!}
{!! Form::label('name',translate('name'),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('name',null, array('class' => 'form-control', 'placeholder'=>"",'required'=>'required')) !!}
{!! Form::close() !!}
@endsection