From 63df2050195d7da49a552b736216fc7272ea6f91 Mon Sep 17 00:00:00 2001 From: Paul Conroy Date: Mon, 12 Oct 2020 18:40:47 +0100 Subject: [PATCH] Update authentication.md Remove updates from create scenario. --- 1.x/features/authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1.x/features/authentication.md b/1.x/features/authentication.md index 6030757..bbccafe 100644 --- a/1.x/features/authentication.md +++ b/1.x/features/authentication.md @@ -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.