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
I just did something like this. You just need to use blade's templating!
//pass back a variable when redirecting
return Redirect::back()->with('error_code', 5);
And then in your blade template:
@if(!empty(Session::get('error_code')) && Session::get('error_code') == 5)
@endif
This will opens the dialog whenever there is error_code is present and equals to 5!