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