From 346fcf968f5ffdd5aedfd43c33fb833fecf183be Mon Sep 17 00:00:00 2001 From: Vasyka Date: Tue, 1 Sep 2026 11:04:24 +0000 Subject: [PATCH] =?UTF-8?q?fix(faq):=20toggle=20worked=20server-side=20but?= =?UTF-8?q?=20click=20did=20nothing=20=E2=80=94=20nested=20forms?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Filament pages wrap their content in an outer
. My inline for the hint toggle + reset was nested inside that outer form — invalid HTML, so browsers dropped my submit and either did nothing or ran the outer Livewire form's handler. Replaced both forms with plain - - {{ $user?->hints_enabled ? __('ACTIVE') : __('DEZACTIV') }} - -
-
- @csrf - -
+ + + {{ $user?->hints_enabled ? __('ACTIVE') : __('DEZACTIV') }} + + + {{-- GRID --}}