aerni / statamic-livewire-forms

Supercharge your Statamic forms with Livewire
https://statamic.com/addons/aerni/livewire-forms
Other
28 stars 2 forks source link

Improve the error messages for fields without labels #4

Closed stuartcusackie closed 3 years ago

stuartcusackie commented 3 years ago

I have a newsletter form with a single field for the email address. I don't use a label for this field, just a placeholder.

The error message looks like this:

image

image

Can this fall back to the fieldname instead (without 'data.')?

Thanks!

aerni commented 3 years ago

The display property of a field is required for this addon to work.

I just released v1.2.0-beta.3 that allows you to add show_label: false to your field to hide the label. That should achieve what you want.

stuartcusackie commented 3 years ago

Ah I see. This solution works fine. Thanks!