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