Guys,
I'm trying to use a color picker inside a Custom Livewire Page, using a form from Filament, and for some reason, the ColorPicker is not working as expected.
All other fields are working like a charm, but specifically, the Color Picker is always required, even with a filled value.
Forms\Components\ColorPicker::make('primary_color')
->label('Cor')
->required()
When I remove 'required' and debug the sent form, primary_color is received as null. If I keep required, form is not sended because requires value.
I'm using inside custom page like: {{ $this->form }}
I use the same with a lot other pages (without color picker) and it works.
I tried to upgrade all my packages but continue.