Devise form within a different controller
As Andres says, the form calls helpers which are specified by Devise and so aren’t present when you access a Devise form from a non-Devise controller. To get around this, you need to add the following methods to the helper class of the controller you wish to display the form under. Alternatively, you can just … Read more