@extends('backend.layouts.app') @section('page-title', trans('app.edit_category')) @section('page-heading', $category->title) @section('content')
@include('backend.partials.messages')
{!! Form::open(['route' => array('backend.category.update', $category->id), 'files' => true, 'id' => 'user-form']) !!}

@lang('app.edit_category')

@include('backend.categories.partials.base', ['edit' => true])
{!! Form::close() !!}
@stop