Your double induction is not sufficient the way you have set it up. You end up proving only the cases with $n=0$ and arbitrary $m$, and with $m=1$ and arbitrary $n$.
Also, while I'm not sure you really are trying to do this, but it almost sounds like you want to go from the $(m,n)$ case directly to the $(m+1,n+1)$ case, but that wouldn't be right, since now you only hit the $(1,0)$, $(2,1)$, $(3,2)$, ... cases. Clearly you want to get to all the cases from the whole $m \times n$ 'grid', rather than just its diagonal.
Instead, what you could do is to go from the $(m,n)$ case to both the $(m,n+1)$ case and the $(m+1,n)$ case.
Another thing to think about, though, is that you are dealing with the Fibonacci numbers, and where a single variable induction involving the Fibonacci numbers involves having to have two base cases, with this kind of double induction you'll actually need all those cases with $n=0$ and arbitrary $m$, and all the cases with $m=1$ and arbitrary $n$, as your base cases, so that you can go from the $(m-1,n)$ and the $(m,n)$ case to the $(m+1,n)$ case, and from the $(m,n-1)$ and the $(m,n)$ case to the $(m,n+1)$ case.
That is:
Suppose you have (by induction) proven the claim to be true for all the cases with $n=0$ and arbitrary $m$, and with $m=1$ and arbitrary $n$.
So now take some arbitrary $m > 1, n > 0$
Assume Inductive hypothesis:
$$F_{m+n} = F_{m} F_{n+1} + F_{m-1} F_{n}$$
and:
$$F_{m+n-1} = F_{m} F_{n} + F_{m-1} F_{n-1}$$
and:
$$F_{m-1+n} = F_{m-1} F_{n+1} + F_{m-2} F_{n}$$
First do $m,n+1$:
$$F_{m+(n+1)} = F_{m+n-1}+ F_{m+n} \overset{Inductive Hypothesis}{=}$$
$$ F_{m} F_{n} + F_{m-1} F_{n-1} + F_{m} F_{n+1} + F_{m-1} F_{n}=$$
$$ F_{m} (F_{n} + F_{n+1}) + F_{m-1} (F_{n-1} + F_{n})=$$
$$ F_{m} F_{n+2} + F_{m-1} F_{n+1}$$
as desired.
Now do $m+1,n$:
$$F_{m+1+n} = F_{m-1+n}+ F_{m+n} = \overset{Inductive Hypothesis}{=}$$
$$F_{m-1} F_{n+1} + F_{m-2} F_{n} + F_{m} F_{n+1} + F_{m-1} F_{n}=$$
$$(F_{m-1} + F_{m}) F_{n+1} + (F_{m-2} + F_{m-1})F_{n} =$$
$$F_{m+1} F_{n+1} + F_{m}F_{n}$$
Again, as desired.
... well, ok, so that works, but it did require infinitely many base cases, which required their very own induction. Isn't there something we can do to avoid this? Yes!
Here's something you can do. Do induction on $k$, where $k=m+n$. That is, show that the claim holds for $(1,0)$, $(1,1)$, and $(2,0)$ as your base cases, and then show that for any $k>2$: if we assume that the claim holds for all $(m,n)$ with $m+n=k-2$ and the claim also holds for all $(m,n)$ with $m+n=k-1$, then the claim also holds for all $(m,n)$ with $m+n=k$. Now, in proving this step, you will have to account of the edge cases where $m=1$ or where $n=0$ though, but other than that you can follow the above derivations, so that would seem to be a little less work.
Finally, here is a method to prove the claim without any difficult induction at all. Suppose that you want to go up some stairs and at every step you can take either one or two stairs: in how many ways can you get up the stairs? Well, if we say that there are $n-1$ stairs, then it turns out there are $F_n$ ways to do it (where $F_0$ is defined to $0$ and $F_1$ to $1$). Here is why: for your first step you can either go one up or two up. Now, if by inductive hypothesis there are $F_{n-1}$ ways to finish climbing the $n-2$ stairs after having taken a step of $1$ stairs, and there are $F_{n-2}$ ways to finish climbing the $n-3$ stairs after having taken a step of $2$ stairs, then it follows that there are $F_{n-1}+F_{n-2}=F_n$ ways to climb the original $n-1$ stairs, completing the inductive proof that indeed there are $F_n$ ways to climb $n-1$ stairs if every step you take either $1$ or $2$ stairs.
OK, but that means that we can climb $m+n-1$ stairs in $F_{m+n}$ ways. But note: we can either climb the stairs and at some point having climbed exactly $m-1$ stairs, or we can climb the stairs and at some point having climbed exactly $m-2$ stairs, after which we take a step of two stairs, and continue our way: each way of climbing the stairs will be done in one of those two different ways. OK, but the first way can be done in $F_m F_{n+1}$ ways, since you can go up $m-1$ steps in $F_m$ ways and then finish the other $n$ stairs in $F_{n+1}$ ways. For the second method there are $F_{m-1}$ ways to first climb $m-2$ stairs, and then $F_n$ ways to climb the remaining $n-1$ stairs after taking a step of two stairs after that, for a total of $F_{m-1}F_n$ ways. Thus, it must be true that:
$$F_{m+n} = F_{m} F_{n+1} + F_{m-1} F_{n}$$