@extends('layouts.app') @section('content')

Update Item

{{ Form::model($payment_term, array('route' => array('payment-terms.update', $item_id),'class' => 'form-horizontal', 'method' => 'PUT')) }}
{{ Form::text('title', null, array('class' => 'form-control', 'maxlength' => '50')) }} @if($errors->has('title')) {{ $errors->first('title') }} @endif
@endsection