Lan over PPTP To remote site not working

I have a problem to connecting remote site. I have PPTP Vpn Client that run in Mikrotik and connected RemoteRouter successfully. I can also reach to remote LAN from Mikrotik, However Local LAN (that behind and connected to Mikrotik) can not reach to remote LAN. The diagram is also some thing like bellow:

LOCAL-LAN-----------------------> Mikrotik<----------------------------------------------------------------------------------------------->Remote-Router<------------------Remote-LAN
168.10.0/24--------192.168.10.1— PublicIP#1(A.B.C.D)--------------------------------------------------------------PublicaIP#2 (W.X.Y.Z)—192.168.100.1----------192.168.100.0/24
I also play with mtu and even ppp profile, but nothing changed. infact ping from LOCAL-LAN to Remote-LAN was “request timed out” however Mikrotik itself do it successfully. the config is also here. please let me know how can I do it for LOCAL-LAN to get it successful too. So the request is: successful ping from LOCAL-LAN To Remote-LAN. thanks in advance
[*]Note: Default NAT Masquerade for Out Public#1 Interface and Default 0.0.0.0 Destination for Route through Public#1 were already existed and Mikrotik (And Remote Router) Connected to Internet.

/interface bridge
add name=BR-LAN
/interface ethernet
set [ find default-name=ether2 ] name=ether2-WAN
set [ find default-name=ether3 ] name=ether3-LAN
/interface ethernet
set [ find default-name=ether1 ] master-port=ether3-LAN
set [ find default-name=ether4 ] master-port=ether3-LAN

/ip pool
add name=LAN ranges=192.168.10.100-192.168.10.110

/ip dhcp-server
add address-pool=LAN disabled=no interface=BR-LAN name=LAN-DHCP

/ppp profile
set *0 change-tcp-mss=no

/interface pptp-client
add connect-to=W.X.Y.Z disabled=no name=To-RemoteRouter profile=Site-to-Site user=remotesite

/interface bridge port
add bridge=BR-LAN interface=ether3-LAN

/ip address
add address=A.B.C.D interface=ether2-WAN network=A.B.C.D
add address=192.168.10.1/24 interface=BR-LAN network=192.168.10.0

/ip dhcp-server network
add address=192.168.10.0/24 dns-server=8.8.8.8 gateway=192.168.10.1

/ip dns
set allow-remote-requests=yes servers=8.8.8.8,8.8.4.4

/ip firewall filter
add action=drop chain=input dst-port=53 in-interface=ether2-WAN protocol=tcp
add action=drop chain=input dst-port=53 in-interface=ether2-WAN protocol=udp

/ip firewall nat
add action=accept chain=srcnat comment="Remote Site NAT" dst-address=\
    192.168.100.0/24 src-address=192.168.10.0/24

/ip route
add distance=1 dst-address=192.168.100.0/24 gateway=To-RemoteRouter