<% if resource.errors.any? %>
Please fix the following errors:
<% end %>
Change your password
<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| %> <%= f.hidden_field :reset_password_token %>
<%= f.label :password, "New password" %>
<%= f.password_field :password, autofocus: true, autocomplete: "off", class: "validate", minlength: @minimum_password_length.presence || 1, required: 'required' %> <% if @minimum_password_length %> (<%= @minimum_password_length %> characters minimum)
<% end %>
<%= f.label :password_confirmation, "Confirm new password" %>
<%= f.password_field :password_confirmation, autocomplete: "off", class: "validate", minlength: @minimum_password_length.presence || 1, required: 'required' %>
<%= f.submit "Change my password", class: 'btn' %>

<%= render "devise/shared/links" %>
<% end %>