It looks like you have not initialized @user instance variable and please find the solution below:
@user
Intead of this:
def new end
Use this
def new @user = User.new end