@extends('layouts.app') @section('title', 'Edit Category') @section('breadcrumb') @endsection @section('content')
@csrf @method('PUT')
{{-- Main Info Card --}}
Category Information
{{-- Category Name --}}
@error('name')
{{ $message }}
@enderror
{{-- Parent Category --}}
Optional: Select if this is a subcategory
{{-- Description --}}
{{-- Settings Card --}}
Settings
{{-- Color --}}
Used for display in POS
{{-- Icon --}}
{{-- Status --}}
is_active) ? 'checked' : '' }} id="statusSwitch">
Inactive categories won't show in POS

{{-- Submit Button --}}
{{-- Info Card --}}
Category Info
Products: {{ $category->products()->count() }}
Created: {{ $category->created_at->format('M d, Y') }}
Updated: {{ $category->updated_at->format('M d, Y') }}
@push('styles') @endpush @push('scripts') @endpush @endsection