@extends('admin.master') @section('title') Category Add @endsection @section('sideMenuTitle') Category Add @endsection @section('pageTitle') Category List @endsection @section('bodyContent')
@if(Session::has('message'))

{{Session::get('message')}}

@endif @if(Session::has('error'))

{{Session::get('error')}}

@endif @if ($errors->any())
@endif

@if (!isset($category)) {!! Form::open(['url' => 'category/add', 'method' => 'post', 'name' => 'catForm', 'enctype' => 'multipart/form-data', 'role' => 'form']) !!} @endif @if (isset($category)) {!! Form::open(['url' => 'category/update', 'method' => 'post','name' => 'catForm', 'enctype' => 'multipart/form-data', 'role' => 'form']) !!} @endif
{!! Form::close() !!}
@endsection