Hi all, I want to display a message of type "required" if password is not entered, if it is entered and less than 6 chars, display *another* message of type "minlength"
I have this for now on, but not completed :
<field property="password" depends="required, minlength">
<arg key="required.password"/>
<var>
<var-name>minlength</var-name>
<var-value>6</var-value>
</var>
</field>
Here I will have the same message for the required problem and the minlength
problem.
Thank u for ANY help ! :-)

