@extends('layouts.admin') @section('title', $title ?? 'Category Edit') @section('content')
@if(session('error'))
{{ session('error') }}
@endif
@if($category)
@csrf

{{ $category->title }}

Parent category cannot be changed from this interface
Brief explanation of what belongs in this category
Minimum file size for releases in this category (in bytes). Set to 0 to disable.
Maximum file size for releases in this category (in bytes). Set to 0 to disable.
@foreach($status_ids as $index => $statusId)
status ?? 0) == $statusId ? 'checked' : '' }}>
@endforeach
Inactive categories won't appear in menus but can still be used for release matching
disablepreview ?? 0) == 0 ? 'checked' : '' }}>
disablepreview ?? 0) == 1 ? 'checked' : '' }}>
Disabling prevents ffmpeg from generating previews for releases in this category
@else
No category selected. Please select a category to edit.
@endif
@push('scripts') @endpush @endsection