From 74add716ad973466c957f00326bb5d5fd879e332 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Tue, 5 Mar 2024 19:10:55 +0100 Subject: [PATCH] Add registration fields array --- app/Livewire/BillingPortal/Authentication/Register.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Livewire/BillingPortal/Authentication/Register.php b/app/Livewire/BillingPortal/Authentication/Register.php index 65fb21f598df..76f713ef0a95 100644 --- a/app/Livewire/BillingPortal/Authentication/Register.php +++ b/app/Livewire/BillingPortal/Authentication/Register.php @@ -44,6 +44,8 @@ class Register extends Component 'initial_completed' => false, ]; + public array $registration_fields = []; + public function initial() { $this->validateOnly('email', ['email' => 'required|bail|email:rfc']);