New User

<%= simple_form_for(@user, url: accounts_path) do |f| %> <%= f.error_notification %>
<%= f.input :email, required: true, autofocus: true %> <%= f.input :password, autocomplete: "off", hint: "leave it blank if you don't want to change it", required: false %> <%= f.input :password_confirmation, required: false %>
<%= f.button :submit, "Update" %>
<% end %>