'required|string|max:255', 'email' => 'required|string|lowercase|email|max:255', 'password' => ['required', 'confirmed', Rules\Password::defaults()], ]; } /** * Determine if the user is authorized to make this request. */ public function authorize(): bool { return true; } }