Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Bengal's avatar

Laravel Fortify and Postman.

I installed Laravel 10 using the Fortify package and can't figure out how to get it to work with Postman. I did all the setup according to the documentation, but I get the error: “The route register could not be found.” The php artisan route:list command shows that the route is: POST register .... Laravel\Fortify › RegisteredUserController@store. How to make it work?

0 likes
4 replies
tisuchi's avatar

@bengal Can you double confirm that Registration feature is enable?

Check in the config/fortify.php file that the following feature is not commented out.

'features' => [
    Features::registration(),
],
Bengal's avatar

@tisuchi In my config/fortify.php:

    'features' => [
        Features::registration(),
        Features::resetPasswords(),
        Features::emailVerification(),
        Features::updateProfileInformation(),
        Features::updatePasswords(),
        /*
        Features::twoFactorAuthentication([
            'confirm' => true,
            'confirmPassword' => true,
            // 'window' => 0,
        ]),
        */
    ],

When I try to send a request to /login using Postman, I get the same error.

Bengal's avatar

I have found problem. It's my mistake. I set Collection Var in Postman base_url = 'http ://test.local/' and use them by {{base_url}}/register. URI was http ://test.local//register.

Please or to participate in this conversation.