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
Often on web page load js generates additional inputs and adds them to the FORM DOM element, for example it happens often for adding browser and system information, if available.
When we use Form then and pass values for inputs to be set, Form class says then something like "I cannot reach these inputs" - because they initially where not in the HTML loaded.
Adding some bool parameter like createMissingInputs may help in such a case. Otherwise we have to first manually add input dom nodes to the form node, and only then call ->form() method. Passing an array of desired inputs will simplify Form usage in such a case.