-
Notifications
You must be signed in to change notification settings - Fork 297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Form is valid even if repeated fields are not the same #447
Labels
Comments
Yeah, you need to write your own validation, there's no default support for that. |
Eloar
added a commit
to Eloar/laravel-form-builder
that referenced
this issue
Apr 13, 2023
- adding `same:` rule to first field of repeated type - proper handling of rules on repeated field itself and first subfield
Eloar
added a commit
to Eloar/laravel-form-builder
that referenced
this issue
Apr 13, 2023
- adding `same:` rule to first field of repeated type - proper handling of rules on repeated field itself and first subfield
Eloar
added a commit
to Eloar/laravel-form-builder
that referenced
this issue
Apr 13, 2023
- adding `same:` rule to first field of repeated type - proper handling of rules on repeated field itself and first subfield
rudiedirkx
pushed a commit
that referenced
this issue
Apr 15, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I use Laravel 5.6 and your package, but I can't show an error when repeated fields are not the same.
I have 2 repeated fields in my form (email and password), I put different passwords but
$form->isValid()
returns true. Do I need to write my own validation ?
My password form is :
Thanks
The text was updated successfully, but these errors were encountered: