Commit 557b02d5 authored by Nicolas Widart's avatar Nicolas Widart

Adding custom messages

parent d4574882
...@@ -9,3 +9,17 @@ ...@@ -9,3 +9,17 @@
</div> </div>
@endif @endif
@endif @endif
@if (Session::has('success'))
<div class="alert alert-success">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
{{ Session::get('success') }}
</div>
@endif
@if (Session::has('error'))
<div class="alert alert-error">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
{{ Session::get('error') }}
</div>
@endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment