Symbole égal

<!-- The problem is with your input -->
<form:input type="text" path="firstName" required autocomplete="off" />
<!-- This is the expected input -->
<form:input type="text" path="firstName" required="required" autocomplete="off" />
Vishal