Hi Mohammad,
I suppose that you forgot to change these values of pins in pin_mux.c
By default there is
PORT_SetPinMux(PORTB, 10U, kPORT_MuxAlt7);
PORT_SetPinMux(PORTB, 11U, kPORT_MuxAlt7);
but according to RM is needed to change it according

So, please change it to
PORT_SetPinMux(PORTB, 2U, kPORT_MuxAlt7);
PORT_SetPinMux(PORTB, 3U, kPORT_MuxAlt7);

according to schematic it should work

Please let me know, if this helps you.
Best Regards,
Iva