@extends('adminlte::page') @section('title', 'Edit Category') @section('content_header')

Edit {{ $category->title }}

@stop @section('content') @if (count($errors) > 0)
Whoops! There were some problems with your input.
@endif
@csrf @method('PATCH')

Edit Category

The name is how it appears on your site. @error('title')

{{ $message }}

@enderror
  The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens. @error('slug')

{{ $message }}

@enderror

Description

  The description is not prominent by default; however, some themes may show it.
@error('body') {{ $message }} @enderror
{{-- seo --}} {{--

SEO

  Search engine details
@error('meta_title') {{ $message }} @enderror
@error('meta_description') {{ $message }} @enderror
@error('meta_keywords') {{ $message }} @enderror
--}}

Category Details

{{--
status) == 1 ? 'checked' : '' }}> categories prioritize content on the homepage.
--}}

Featured Image

@if ($category->image)
@endif
{{--   Note: Webp Image | size: Width-1280px Height: 720px
--}}
@if ($category->image) your image @else your image @endif
@stop @section('css') @stop @section('js') {{-- show image --}} @stop