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