@extends('layouts.master') @section('page-title') Edit expense category - {{ $category->name }} @endsection @section('content') @include('common.errors') {{ Form::model($category, [ 'action' => ['Expense\CategoryController@update', $category->id]]) }} {{ method_field('PUT') }} @include('expense.category.form')
{{ Form::close() }} @endsection