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

Edit Blog Category

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

Edit 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