Files
teddy_y/quotation2/laravel-simple-tryout/php74-httpd/example-app/resources/views/message.blade.php
louiscklaw db8bf18f7a update,
2025-02-01 02:08:48 +08:00

44 lines
1.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@if ($message = Session::get('success'))
<div class="col-lg-4">
<div class="alert alert-success alert-block">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>{{ $message }}</strong>
</div>
</div>
@endif
@if ($message = Session::get('error'))
<div class="col-lg-4">
<div class="alert alert-danger alert-block">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>{{ $message }}</strong>
</div>
</div>
@endif
@if ($message = Session::get('warning'))
<div class="col-lg-4">
<div class="alert alert-warning alert-block">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>{{ $message }}</strong>
</div>
</div>
@endif
@if ($message = Session::get('info'))
<div class="col-lg-4">
<div class="alert alert-info alert-block">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>{{ $message }}</strong>
</div>
</div>
@endif
@if ($errors->any())
<div class="col-lg-4">
<div class="alert alert-danger">
<button type="button" class="close" data-dismiss="alert">×</button>
Please check the form below for errors
</div>
</div>
@endif