Data from your forms should be validated server-side using Laravel’s validation functionality to avoid unexpected output. To make it easy to check your server-side validation, HTML and JavaScript validation should not be used.
I have 3 input types (input field, dropdown, radio button). If I only have the input field(s) testable, is that okay? (I will still add server side validation for dropdown and radio button inputs but I have pre-select for the dropdown and radio button when the page loads)
Hi,
Regarding the following requirement
I have 3 input types (input field, dropdown, radio button). If I only have the input field(s) testable, is that okay? (I will still add server side validation for dropdown and radio button inputs but I have pre-select for the dropdown and radio button when the page loads)
Thanks.