mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
56 lines
1.6 KiB
PHP
Executable file
56 lines
1.6 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="fa fa-exclamation-circle faa-pulse animated"></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="fa fa-check faa-pulse animated"></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="fa fa-exclamation-circle faa-pulse animated"></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="fa fa-warning faa-pulse animated"></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="fa fa-info-circle faa-pulse animated"></i>
|
|
<strong>Info: </strong>
|
|
{{ $message }}
|
|
</div>
|
|
</div>
|
|
@endif
|