@extends('admin.layouts.home') @section('title', 'Edit Game Category') @section('content')

Edit Game Category: {{ $gameCategory->name }}

Back to Categories
Category Information
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
Enter a Bootstrap icon class (e.g., bi bi-controller, bi bi-puzzle). Use Bootstrap Icons for reference.
is_active) ? 'checked' : '' }}>
If enabled, this category will be visible to users.
Provide a brief description of the game category.
Category Details

Games Count: {{ $gameCategory->games_count }}

Slug: {{ $gameCategory->slug }}

Created: {{ $gameCategory->created_at->format('M d, Y') }}

Last Updated: {{ $gameCategory->updated_at->format('M d, Y') }}

Common Game Icons Reference
bi bi-controller
bi bi-puzzle
bi bi-chess
bi bi-car
bi bi-person-running
bi bi-bolt
bi bi-basketball
bi bi-airplane-engines
@push('scripts') @endpush @endsection