From 19726f863ab2dd137c164e1e7108d090813a760f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20M=2E?= Date: Thu, 28 Nov 2024 16:48:42 +0100 Subject: [PATCH] Let the user decide if they want to validate --- src/Forms/Concerns/WithAttributes.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Forms/Concerns/WithAttributes.php b/src/Forms/Concerns/WithAttributes.php index d481b26..204582c 100644 --- a/src/Forms/Concerns/WithAttributes.php +++ b/src/Forms/Concerns/WithAttributes.php @@ -70,8 +70,6 @@ protected function keys(): array protected function request(): FormRequest { - $this->validate(); - return (new FormRequest)->merge($this->all()); }