Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 1.x/features/authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Fortify::registerView(function () {

As typical of most Jetstream features, the logic executed to satisfy registration / authentication requests can be found in an action class within your application.

Specifically, the `App\Actions\Fortify\CreateNewUser` class will be invoked when a user updates registers with your application. This action is responsible for validating the input and creating the user.
Specifically, the `App\Actions\Fortify\CreateNewUser` class will be invoked when a user registers with your application. This action is responsible for validating the input and creating the user.

Therefore, any customizations you wish to make to user creation logic should be made in this class. The action receives an array of `$input` that contains all of the input from the incoming request.

Expand Down