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

Add Blog Category

@if(session()->has('message'))
{{ session()->get('message') }}
@endif

Add Blog Category Detail

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('slug')) {{ $errors->first('slug') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@endsection