In my controller im trying to redirect back with a Flash message in laravel 5. This all works great. The problem is no matter how i set it up the flash message always re-app
For those of you not concerned with back button:
@if (Session::has('error_message'))
{{ Session::get('error_message') }}
{{ Session::forget('error_message') }}
@endif
and if that doesnt make it clear out, try:
@if (Session::has('error_message'))
{{ Session::get('error_message') }}
{{ Session::forget('error_message') }}
{{ Session::save() }}
@endif