@extends('admin.layouts.home') @section('title', __('Create Blog Category')) @section('content')

{{ __('Create Blog Category') }}

{{ __('Back to Categories') }}
{{ __('Category Information') }}
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
{{ __('Basic Information') }}
@error('name')
{{ $message }}
@enderror {{ __('This will be used to generate the URL slug automatically.') }}
@error('description')
{{ $message }}
@enderror {{ __('A brief description of this category. This will help users understand what content belongs here.') }}
{{ __('Status Options') }}
@error('status')
{{ $message }}
@enderror {{ __('Active categories will be visible to users.') }}
@endsection @push('scripts') @endpush