DEV Community

jhomegroup
jhomegroup

Posted on

Sweet Alert

use Illuminate\Http\Request;

public function register(Request $requies)
{
    Validator::make($requies->all(), [
        'name' => ['required', 'string', 'max:255'],
        'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
        'password' => $this->passwordRules(),
    ])->validate();

    return User::create([
        'name' => $requies['name'],
        'email' => $requies['email'],
        'password' => Hash::make($requies['password']),
    ]);
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay