How do I keep the modal open?
How to Keep modal open while resetting the form with an additional 'create another' action?
1 Reply
I found a solution by halting the modal from closing process, which might help others facing the same issue
if ($arguments['another'] ?? false) {
$form->fill();
$action->halt();
}