What I am trying to do: I am trying to access the default Filament admin login page.
What I did: I just created a brand new Laravel project and installed Filament.
My issue/the error: The input field labels on the login form are broken. Instead of displaying clean text (e.g., "Email address"), they are rendering the raw HTML attributes alongside the text (e.g., for="form.email" class="fi-fo-field-label" > Email address).
The Scenario When using dynamic Blade tag names (a pattern used extensively in Filament), morph markers are incorrectly injected inside the HTML opening tag, breaking the HTML structure entirely. A...