Is there a way to bypass validation with form builder
Created 6 years ago by mattcdavis1

I'd like to add a quick save functionality (for front end form) that just saves form state regardless of whether the form is valid.

ryanthompson  —  6 years ago

You can use your own form validator on the builder and just have it do nothing:

protected $validator = Novalidation::class;
mattcdavis1  —  6 years ago

got it - thanks!