I am trying to perform some custom validation with play framework but I don't seem to be able to get the error from the template.
The controller code is :
User user = User.findByEmail(email);
if(user != null) {
Logger.warn("User account already created for email %s", email);
validation.addError("email", "This email address already in use.");
params.flash();
flash.error("Please correct the error below!");
signup();
}
and the signup.html template:
#{error 'email' /}
I can see that the controller sees the duplicate email but the error message does not appear in the template.
Is the code above correct?