| 123456789101112131415161718192021222324252627282930313233343536 | 
							- <?php
 
- namespace App\Providers;
 
- use App\Actions\Fortify\CreateNewUser;
 
- use App\Actions\Fortify\ResetUserPassword;
 
- use App\Actions\Fortify\UpdateUserPassword;
 
- use App\Actions\Fortify\UpdateUserProfileInformation;
 
- use Illuminate\Support\ServiceProvider;
 
- use Laravel\Fortify\Fortify;
 
- class FortifyServiceProvider extends ServiceProvider
 
- {
 
-     /**
 
-      * Register any application services.
 
-      *
 
-      * @return void
 
-      */
 
-     public function register()
 
-     {
 
-         //
 
-     }
 
-     /**
 
-      * Bootstrap any application services.
 
-      *
 
-      * @return void
 
-      */
 
-     public function boot()
 
-     {
 
-         Fortify::createUsersUsing(CreateNewUser::class);
 
-         Fortify::updateUserProfileInformationUsing(UpdateUserProfileInformation::class);
 
-         Fortify::updateUserPasswordsUsing(UpdateUserPassword::class);
 
-         Fortify::resetUserPasswordsUsing(ResetUserPassword::class);
 
-     }
 
- }
 
 
  |