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.
Redirect::back
I
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