This is a very common piece of code
<% form_for :blah... do |f| %>
<%= f.error_messages %>
First name: <%= f.text_field :first_name %><br />
....
<% end %>
error_messages
is a helper method but I am having a hard time finding the documentation for it, why is that?