@extends('admin.layout') @section('content') {{-- Categories module UI: Forms tab is the default landing view. --}}

Categories

Manage Forms and Mediums used across artworks.

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
Please fix the following:
@endif
@forelse($forms as $form) @empty {{-- Empty state copy aligned for forms listing screen. --}} @endforelse
Form Total Artworks Mediums Updated By Actions
{{ $form->name }} {{ (int) $form->paintings_count }} {{ (int) $form->mediums_count }} {{ $form->updated_by ?: '-' }}
No forms found. Click Add New Form to create your first form.
{{-- Add New Form modal --}} {{-- Edit form modal --}} @endsection @push('scripts') @endpush