<% provide(:title, "Edit user") %>

Update your profile

<%= form_for(@user) do |f| %> <%= render 'shared/error_messages', object: f.object %> <%= f.label :first_name, "First Name" %> <%= f.text_field :first_name %> <%= f.label :last_name, "Last Name" %> <%= f.text_field :last_name %> <%= f.label :email %> <%= f.text_field :email %> <%= f.label :password %> <%= f.password_field :password %> <%= f.label :password_confirmation, "Confirm Password" %> <%= f.password_field :password_confirmation %> <%= f.label :city %> <%= f.text_field :city %> <%= f.label :state %> <%= f.text_field :state %> <%= f.label :country %> <%= f.text_field :country %> <%= f.submit "Save changes", class: "btn btn-large btn-primary" %> <% end %> <%= gravatar_for @user %> change