DHCP-Relay three routers

I am sure this is simple. I have a DHCP server running on R1. I have DHCP-Relay on R2 working fine. I cannot get DHCP-Relay to work on R3.
I can ping all IPs from all routers. I have added rules to the Firewalls to allow DHCP traffic. For testing I disabled all Firewall Filters. I have tried updating to the latest RouterOS. I have attempted to follow several different how-to documents and went over the Mikrotik wiki several times. I can make this work if I bypass R2, but that is in a test environment. I cannot bypass R2 in production. I must be overlooking something. Any help would be appreciated. Let me know if there is any other information needed to diagnose this issue.
DHCP-Relay.png
R1
/ip pool
add name=dhcp_pool1 ranges=10.10.10.2-10.10.10.254
add name=dhcp_pool2 ranges=10.10.11.2-10.10.11.254
/ip dhcp-server
add address-pool=dhcp_pool1 authoritative=yes disabled=no interface=ether8 lease-time=1d name=T1-Cust relay=10.10.10.1
add address-pool=dhcp_pool2 authoritative=yes disabled=no interface=ether8 lease-time=1d name=T2-Cust relay=10.10.11.1
/ip dhcp-server network
add address=10.10.10.0/24 dns-server=10.55.0.251,9.9.9.9 gateway=10.10.10.1
add address=10.10.11.0/24 dns-server=10.55.0.251,9.9.9.9 gateway=10.10.11.1


R2
/ip dhcp-relay add interface=ether3 dhcp-server=192.168.60.1 local-address=10.10.10.1 disabled=no


R3
/ip dhcp-relay add interface=ether3 dhcp-server=192.168.60.1 local-address=10.10.11.1 disabled=no

Hello: you need R1 to know how to get to 10.10.11.0/24. And R2 needs to know how to get there too. Try the following
R1
/ip route add dst-address=10.10.11.0/24 gateway=192.168.60.2

R2
/ip route add dst-address=10.10.11.0/24 gateway=192.168.60.6

Found typo in OSPF. All seems to be right with the world.