How do I output the full error message of a field using simple form? The equivalent of rails: <%= RESOURCE.errors.full_messages %>
e.g. show this:
"Email has already been taken",
"Password confirmation doesn't match Password",
"Password is too short (minimum is 8 characters)"
instead of: f.error_notification
"has already been taken",
"doesn't match Password",
"is too short (minimum is 8 characters)"
simple_form (3.0.2)/Rails 4.1.1