@extends('layouts.container')
@section('title', 'Categories Management')
@section('title_description')
Edit Category: {{ $categories->category_name }}
@endsection
@section('css')
@endsection
@section('body-class', 'skin-blue')
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{{ Form::model($categories, array('route' => array('categories-edit-data', $categories->id), 'method' => 'PUT')) }}
@include('admin.categories.form')
{{ Form::close() }}
@endsection
@section('js')
@endsection