I have an application that has a custom registration controller, called users_controller, for devise because only Admin is able to create users. I want to allow users to ch
If you have a devise model User, you can use this path to route to the change password page.
edit_user_registration_path
Just use this in your view as:
<%= link_to 'Change Password', edit_user_registration_path %>
This should do the trick, it works for me.