Modal footer submit
I do have a modal in a
view.blade.php
file which contains a form and I want to have the submit button in the modal footer (and not within the modal content:
The submit button appears in the modal footer but I could not submit the form.
Any ideas how to get submit in modal footer working?1 Reply
Do you want when button (outside the form tag) clicked, it will submit the form? You can add id attribute to your form tag like id="myForm", then you can add form="myForm" attribute to your button tag.
Or you want to use wire:click="yourSubmitFunction" on your button if you want to handle it with livewire