@extends('admin/layouts/default') {{-- Page title --}} @section('title') Category {{ trans('app.update_item') }} @parent @stop @section('content')

Edit Category

Update Category

{!! Form::model($item, [ 'action' => ['Admin\CategoryController@update', $item->category_id], 'method' => 'put', 'files' => true ]) !!} @include('admin.category.form') {!! Form::close() !!}
@stop