030db6e267
Ugh.
56 lines
1.4 KiB
PHP
Executable File
56 lines
1.4 KiB
PHP
Executable File
@if ($errors->any())
|
|
<div class="col-md-12">
|
|
<div class="alert alert-danger">
|
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
|
<i class="icon-exclamation-sign"></i>
|
|
<strong>Error: </strong>
|
|
Please check the form below for errors
|
|
</div>
|
|
</div>
|
|
|
|
@endif
|
|
|
|
@if ($message = Session::get('success'))
|
|
<div class="col-md-12">
|
|
<div class="alert alert-success">
|
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
|
<i class="icon-ok"></i>
|
|
<strong>Success: </strong>
|
|
{{ $message }}
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
@if ($message = Session::get('error'))
|
|
<div class="col-md-12">
|
|
<div class="alert alert alert-danger">
|
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
|
<i class="icon-exclamation-sign"></i>
|
|
<strong>Error: </strong>
|
|
{{ $message }}
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
@if ($message = Session::get('warning'))
|
|
<div class="col-md-12">
|
|
<div class="alert alert-warning">
|
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
|
<i class="icon-warning-sign"></i>
|
|
<strong>Warning: </strong>
|
|
{{ $message }}
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
@if ($message = Session::get('info'))
|
|
<div class="col-md-12">
|
|
<div class="alert alert-info">
|
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
|
<i class="icon-info-sign"></i>
|
|
<strong>Info: </strong>
|
|
{{ $message }}
|
|
</div>
|
|
</div>
|
|
@endif
|