DeveloperBreeze

Laravel Validation Rules for User Registration

public function rules()
{
    return [
        'name' => 'required|string|max:255',
        'email' => 'required|email|unique:users,email',
    ];
}

Related Posts

More content you might like

Code
php

File Upload with Type Validation in PHP

No preview available for this content.

Jan 26, 2024
Read More

Discussion 0

Please sign in to join the discussion.

No comments yet. Be the first to share your thoughts!