@extends('page') @section('content')

Create Category

@if ($message = Session::get('success'))
{{ $message }}
@endif @if (count($errors) > 0)
Whoops! There were some problems with your input.

@endif
{!! Form::open(array('route' => 'categories.store','method'=>'POST')) !!}
{!! Form::text('category', null, array('placeholder' => 'Category Name','class' => 'form-control form-control-sm')) !!}
{!! Form::close() !!}

Guidelines

Guidelines comes here.
@endsection