Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stevenspads/8c1544a2620c229e9b030a93a64226d7 to your computer and use it in GitHub Desktop.
Save stevenspads/8c1544a2620c229e9b030a93a64226d7 to your computer and use it in GitHub Desktop.
Can't see the confirmation/success messages during the Auth Password Reset process in Laravel 5.2? Here's how to output them in a view.
@if( Session::has('status') )
<div class="row">
<div class="col-md-6">
<div class="alert alert-success">
<p>{{ Session::get('status') }}</p>
</div>
</div>
</div>
@endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment