Laravel - 覆盖resetPassword

So I have two tables of users in my database with the name Mahasiswas and Users, and I want to override the resetPassword for Mahasiswas table, because every time I reset the password for the Mahasiswas table, it automatically logged into the Users dashboard.

I put this in my route :

Route::post('password/reset', 'MhsAuth\PasswordController@postMyReset');

And this is my passwordController :

namespace App\Http\Controllers\MhsAuth;
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ResetsPasswords;
class PasswordController extends Controller
{

  use ResetsPasswords;
  protected $redirectPath = '/';
  protected $getGuard = 'mahasiswa';

  public function __construct()
  {
     $this->middleware('mahasiswa');
  }

  public function postMyReset(Request $request)
  {
     return $this->resetMe($request);
  }

  public function resetMe(Request $request)
  {
     $this->validate($request, [
         'token' => 'required',
         'email' => 'required|email',
         'password' => 'required|confirmed|min:6',
     ]);

     $credentials = $request->only(
         'email', 'password', 'password_confirmation', 'token'
     );

     $broker = $this->getBroker();

     $response = Password::broker($broker)->reset($credentials, function ($user, $password) {
            $this->resetMyPassword($user, $password);
     });

        switch ($response) {
                case Password::PASSWORD_RESET:
                    return $this->getResetSuccessResponse($response);

                default:
                    return $this->getResetFailureResponse($request, $response);
        }
    }

    protected function resetMyPassword($user, $password)
    {
        $user->password = bcrypt($password);
        $user->save();
        //Auth::guard($this->getGuard())->login($user);
    }

}

The problem is after reset the password for Mahasiswas table, it's perform auto login to Users Dashboard, it should be in Mahasiswas Dashboard, but I just want to disable the autologin and my passwordController doesn't work as I wanted. Thanks