Input field inside repeater don't work / get validated correctly
I have a simple "quantity" field inside a repeater, I tried to use:
->integer()
->gt(0)
->minValue(1)
but those validations don't work, I can still set a number less than 0, even using the arrows (for the "minValue" method), and I don't get any errors on the submit (for the "integer" and "gt" validations). If I put that same input outside the repeater, it works...0 Replies