tethys/resources/views/partials/flash.blade.php

8 lines
124 B
PHP
Raw Permalink Normal View History

2015-07-19 06:49:24 +00:00
@if(Session::has('flash_message'))
2018-08-29 15:18:15 +00:00
2018-08-06 12:30:51 +00:00
<div class="alert summary-success">
2015-07-19 06:49:24 +00:00
{{ session('flash_message') }}
</div>
2018-08-29 15:18:15 +00:00
2015-07-19 06:49:24 +00:00
@endif