We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3c144c commit 297e68cCopy full SHA for 297e68c
app/Actions/Fortify/CreateNewUser.php
@@ -3,7 +3,6 @@
3
namespace App\Actions\Fortify;
4
5
use App\Models\User;
6
-use Illuminate\Support\Facades\Hash;
7
use Illuminate\Support\Facades\Validator;
8
use Illuminate\Validation\Rule;
9
use Laravel\Fortify\Contracts\CreatesNewUsers;
@@ -34,7 +33,7 @@ public function create(array $input): User
34
33
return User::create([
35
'name' => $input['name'],
36
'email' => $input['email'],
37
- 'password' => Hash::make($input['password']),
+ 'password' => $input['password'],
38
]);
39
}
40
0 commit comments