From b926129e5b5d431f05b827b6f0b8f8f662036493 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 8 Nov 2024 13:22:21 +0100 Subject: [PATCH] fix: saving resend api key --- app/Livewire/Notifications/Email.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Livewire/Notifications/Email.php b/app/Livewire/Notifications/Email.php index 28267331a..56f07f3a9 100644 --- a/app/Livewire/Notifications/Email.php +++ b/app/Livewire/Notifications/Email.php @@ -187,6 +187,7 @@ class Email extends Component { try { $this->validate([ + 'resendApiKey' => 'required', ], [ 'resendApiKey.required' => 'Resend API Key is required.', ]);