79315383

Date: 2024-12-29 10:20:43
Score: 1
Natty:
Report link

It looks like you have not initialized @user instance variable and please find the solution below:

Intead of this:

def new
end

Use this

def new
  @user = User.new
end
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sonu Singh