@extends('back.layouts.layout') @section('title','Add Category') @section('content-header')

Add Category

@endsection @section('content')
@csrf @method('post')
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if ($errors->has('description')){{ $errors->first('description') }}@endif
Status
@if ($errors->has('status')){{ $errors->first('status') }} @endif
Publish
@endsection