@extends('layouts.superadmin') @section('content')

Article Category

Add Category
@if ($errors->any())
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(array('route' => 'portal.categories.store','method'=>'POST','enctype'=>'multipart/form-data')) !!} @include('admin.article.categories.partials.form', ['category' => null])
{!! Form::close() !!}
@endsection