Flash[:notice] VS Flash.now[:notice]
Flash[:notice]’s message will persist to the next action and should be used when redirecting to another action via the ‘redirect_to’ method.
Flash.now[:notice]’s message will be displayed in the view your are rendering via the ‘render’ method.
Flash[:notice] VS Flash.now[:notice],