You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello guys,
I'm trying to set the captcha on a form using livewire v3, I'm able to generate the image and refresh it, but every time I set the correct value, captcha gives me an invalid value.
Please anyone has used it with livewire V3 ?
Thanks
The text was updated successfully, but these errors were encountered:
This is all the "stuff" I'm using to bind the state of the field for validation.
Then in the actual form component I'm using:
public function form(Form $form): Form
{
return $form->schema([
Captcha::make('captcha')
->rules(['captcha'])
->required()
->validationMessages([
'captcha' => __('Captcha does not match the image'),
]),
]);
}
Hello guys,
I'm trying to set the captcha on a form using livewire v3, I'm able to generate the image and refresh it, but every time I set the correct value, captcha gives me an invalid value.
Please anyone has used it with livewire V3 ?
Thanks
The text was updated successfully, but these errors were encountered: