Hello, When you have a text input in a form, and in validation you select required, it adds a key of "required", and the value is left blank. However, when you export the code, the generated code ends up adding a ="" t the required field, which of course makes it so that the browser ignores it.
This is an example:
<div class="form-group"><input class="form-control" type="text" id="register_firstName" placeholder="Nombre" required=''></div>
Can you guys fix it please?
thanks