diff --git a/app/View/Forms/LoginForm.php b/app/View/Forms/LoginForm.php index a1d8da4..ac2348b 100644 --- a/app/View/Forms/LoginForm.php +++ b/app/View/Forms/LoginForm.php @@ -27,7 +27,7 @@ class LoginForm extends BaseForm public function fields() { return [ - HoneyPot::make(), + HoneyPot::make()->name('honeypot'), Email::make('email') ->required() ->label('Email') diff --git a/app/View/Forms/RegistrationForm.php b/app/View/Forms/RegistrationForm.php index a5176ee..de17241 100644 --- a/app/View/Forms/RegistrationForm.php +++ b/app/View/Forms/RegistrationForm.php @@ -31,7 +31,7 @@ class RegistrationForm extends BaseForm public function fields() { return [ - HoneyPot::make(), + HoneyPot::make()->name('honeypot'), Text::make('name', [ 'required' => true, 'label' => 'Name',