%= content_for(:title, "Edit profile") %>
<%= f.label :name %>
<%= f.text_field :name, autofocus: true, autocomplete: "name" %>
<%= f.label :email %>
<%= f.email_field :email, autofocus: true, autocomplete: "email" %>
<%= f.label :password %> (leave blank if you don't want to change it)
<%= f.password_field :password, autocomplete: "new-password" %>
<% if @minimum_password_length %><%= @minimum_password_length %> characters minimum
<% end %><%= f.label :password_confirmation %>
<%= f.password_field :password_confirmation, autocomplete: "new-password" %>
<%= f.label :current_password %> (we need your current password to confirm your changes)
<%= f.password_field :current_password, autocomplete: "current-password" %>