php - Turbo Laravel package fully reloads the page when "return redirect" is used

one text

I have been developing a Laravel 9 application with Livewire and using Turbo Laravel package for give it a SPA feeling. It works fine with regular links, but there is a register page in my application and after registration is successful, I have given a redirect to the same page. but after I clicked the register button the page does a full reload. How can I fix that? Is this a issue with the package. I have tried different redirect notations but the issue remains.

$user = new User;
        $user->name = $this->name;
        $user->username = $this->username;
        $user->gender = $this->gender;
        $user->user_image_path = $userImageName;
        $user->email = $this->email;
        $user->password = Hash::make($this->password);
        $save = $user->save();

        if ($save) {
            return redirect('/regsiter');
        } else {
            return $this->error = 'Something went wrong! Please try again.';
        }

Source