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