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

Update Tax

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