Gustave
Validating a fields with multiple required_if conditions.
Hi guys, I have the following :
Forms\Components\Checkbox::make('is_recurrent')
->reactive(),
Forms\Components\TextInput::make('duration')
->required(fn ($get) => $get('is_recurrent') == false)
When I check the is_recurrent box, the red asterix disappear but my browser still ask me to fill the fields do you now why ? thanks17 replies