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