mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
69 lines
2 KiB
PHP
Executable file
69 lines
2 KiB
PHP
Executable file
@if ($errors->any())
|
|
<div class="col-md-12">
|
|
<div class="alert alert-danger fade in">
|
|
<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('status'))
|
|
<div class="col-md-12">
|
|
<div class="alert alert-success fade in">
|
|
<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('success'))
|
|
<div class="col-md-12">
|
|
<div class="alert alert-success fade in">
|
|
<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 fade in">
|
|
<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 fade in">
|
|
<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 fade in">
|
|
<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
|