The error is clear; you cannot take a non-const address of literal 5. Literals are const, your reference is not. If your add const qualifier to the parameter t, then that should be ok.
However, you try to make the m_head point to the parameter. I bet you want a Node there.
Furthermore, you should not dereference a reference on line 10.