[Answer]-Is calling is_valid() on a form that has hidden values required?

1👍

Yes, the form will be validated for all fields – depending upon required/non-required or default etc – for hidden fields as well with respect to provided data.

If you want to save or use the submitted data, you should validate the form using is_valid().

👤Rohan

Leave a comment