I thought Filament form fields are Blade components, so I’m unsure why this is happening. Here’s the custom field I’m working on:
class NewInput extends TextInput{ protected string $view = 'forms.components.new-input';}
class NewInput extends TextInput{ protected string $view = 'forms.components.new-input';}
Can someone please explain how Filament renders these components, why this happening and what’s the correct way to use them , especially when customizing or extending?