I have been stuck on this error for a while now, I've looked around and apparently it is due to too many end 's, but I can't seem to see why, any help guys? thanks.
Here's my code
class UsersController < ApplicationController
def new
@user = User.new
end
def create
@user = User.new(params[:user])
if @user.save
redirect_to root_url, :notice => "Signed up!"
else
render "new"
end


endin yourif/else,createaction – apneadiving Feb 22 at 11:01