I want to display a label in form_for:
form_for
<%= f.label :name %> <%= f.text_field :name %> &l
The second parameter to label helper will allow you to set custom text.
label
<%= f.label :name, 'Your Name' %>
Use Ruby on Rails Documentation to look up helper methods.