<%= t '.title' %>
<%= simple_form_for(@user, url: raddar.do_change_user_password_path) do |f| %>
<%= f.error_notification %>
<%= f.input :current_password, autocomplete: 'off', required: true, input_html: { class: 'form-control'} %>
<%= f.input :password, label: t('.password_label'), autocomplete: 'off', required: true, input_html: { class: 'form-control'} %>
<%= f.input :password_confirmation, autocomplete: 'off', required: true, input_html: { class: 'form-control'} %>
<%= f.button :submit, t('.submit') %>
<% end %>