@extends('backend.layouts.master') @section('title', isset($category) && $category->exists ? 'Edit Blog Category' : 'Add Blog Category') @section('content') @php $item = $category ?? new \App\Models\BlogCategory(['status' => true]); @endphp

{{ $item->exists ? 'Edit' : 'Add' }} Blog Category

@include('backend.partials.alerts')
@csrf @if($item->exists) @method('PUT') @endif
status ?? true))>
Cancel
@endsection