We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Honeypot does not work:
public function fields() { return [ HoneyPot::make(), Text::make('name', [ 'required' => true, 'label' => 'Name', 'placeholder' => 'Full Name', ]) ] }
seems like content is null
{"name":"html-snippet-5e4f7d39-1de2-42e1-949f-ff3ff079a86c","options":[],"type":"html","content":null,"attributes":[],"level":null,"instance":{}}
but even if you do
HoneyPot::make([ 'content' => HoneyPot::render() ]),
it still does not render correctly.. seems like potentially some issue with setSections()?
If you look at the default Scaffold registration form, there is no honeypot being rendered.
Scaffold/app/View/Forms /RegistrationForm.php
The text was updated successfully, but these errors were encountered:
HoneyPot::make()->name('honeypot')
seems to fix the issue.
setSections was not finding the field with that name. closing this issue to Scaffold.
setSections
Sorry, something went wrong.
GrafiteInc/Scaffold#105
No branches or pull requests
Honeypot does not work:
seems like content is null
{"name":"html-snippet-5e4f7d39-1de2-42e1-949f-ff3ff079a86c","options":[],"type":"html","content":null,"attributes":[],"level":null,"instance":{}}
but even if you do
it still does not render correctly.. seems like potentially some issue with setSections()?
If you look at the default Scaffold registration form, there is no honeypot being rendered.
Scaffold/app/View/Forms
/RegistrationForm.php
The text was updated successfully, but these errors were encountered: