We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20fff81 commit c81d30aCopy full SHA for c81d30a
form/direct_submit.rst
@@ -89,3 +89,8 @@ method, pass the submitted data directly to
89
"PATCH" method, the validation extension will only handle the submitted
90
fields. If the underlying data needs to be validated, this should be done
91
manually, i.e. using the validator.
92
+
93
+ When you need validation for some fields you can extend your data array with the required ones so that they will be validated.
94
+ i.e.::
95
96
+ $form->submit(array_merge(['email' => null, 'username' => null], $request->request->all()), false);
0 commit comments