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

Update Item

{{ Form::model($item, array('route' => array('item.update', $item->id),'class' => 'form-horizontal', 'method' => 'PUT')) }}
{{ Form::text('description', null, array('class' => 'form-control')) }} @if($errors->has('description')) {{ $errors->first('description') }} @endif
{{ Form::text('amount', null, array('class' => 'form-control')) }} @if($errors->has('amount')) {{ $errors->first('description') }} @endif
@endsection