You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running The laravel installer or jetstream install command, the CreateNewUser Fortify Action generated does not match the stub within the fortify project.
For example. within the fortify package the CreateNewUser Fortify Action uses the proper PasswordValidationRules trait for the password validator. When that stub is published to my project, the CreateNewUser Action does not use the PasswordValidationRules trait and instead has 'password' => ['required', 'string', new Password, 'confirmed'],
I've tried removing any composer cache but it continues to happen.
``
Steps To Reproduce:
laravel new laravel8-jet --jet
Select inertia, and no teams
OR
laravel new laravel8-jet
composer require laravel/jetstream
php artisan jetstream:install
Now view the laravel8-jet/app/Actions/Fortify/CreateNewUser file and compare to the package's stub version.
I've also attached a screenshot:
EDIT: This actually looks like it may be a jetstream problem as the CreateNewUser stub within that package looks out of date with Fortify. I will keep this here just in case you decide to keep this open and I'm incorrect but it looks like it's unrelated to this project. Opening a ticket in the jetstream repo: laravel/jetstream#167 Thanks
The text was updated successfully, but these errors were encountered:
Description:
When running The laravel installer or jetstream install command, the CreateNewUser Fortify Action generated does not match the stub within the fortify project.
For example. within the fortify package the CreateNewUser Fortify Action uses the proper
PasswordValidationRules
trait for the password validator. When that stub is published to my project, the CreateNewUser Action does not use the PasswordValidationRules trait and instead has'password' => ['required', 'string', new Password, 'confirmed'],
I've tried removing any composer cache but it continues to happen.
``
Steps To Reproduce:
laravel new laravel8-jet --jet
Select inertia, and no teams
OR
Now view the laravel8-jet/app/Actions/Fortify/CreateNewUser file and compare to the package's stub version.
I've also attached a screenshot:

EDIT: This actually looks like it may be a jetstream problem as the CreateNewUser stub within that package looks out of date with Fortify. I will keep this here just in case you decide to keep this open and I'm incorrect but it looks like it's unrelated to this project. Opening a ticket in the jetstream repo: laravel/jetstream#167 Thanks
The text was updated successfully, but these errors were encountered: