In Backward Euler, the equation to be solved at each step is
$$x_{n+1}=x_n+(t_{n+1}-t_n)f(x_{n+1},t_{n+1}).$$
That is, you want to find roots of the function
$$g_n(x)=x-x_n-(t_{n+1}-t_n)f(x,t_{n+1})$$
where we interpret $x_n,t_{n+1},t_n$ as parameters. So in particular the Jacobian for Newton's method is $I-(t_{n+1}-t_n)D_x f(x,t_{n+1})$, where $D_x$ represents differentiation with respect to the $x$ variables.