Laravel how to redirect back to boostrap modal dialog window

前端 未结 4 1450
时光取名叫无心
时光取名叫无心 2021-02-06 07:55

I want to return to my modal dialog edit form to show validation errors but using Redirect::back I just end up at the HTML page without the modal window.

I

4条回答
  •  遇见更好的自我
    2021-02-06 08:19

    Sounds like you need a condition in your view to open the dialog if errors are found in the session:

    @if($errors->any())
      $('.btn.edit-attendee').click();
    @endif
    

提交回复
热议问题