@extends('layouts.container')
@section('title', 'Group Categories Management')
@section('title_description', 'Add Group 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' => 'categoriesgroup-create-data', 'role' => 'form', 'method' => 'PUT')) }}
@include('admin.categoriesgroup.form')
{{ Form::close() }}
@stop
@section('js')
@stop