43 lines
1021 B
PHP
43 lines
1021 B
PHP
|
@if ($message = Session::get('success'))
|
|||
|
<div class="alert alert-success alert-block">
|
|||
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
|||
|
<strong>{{ $message }}</strong>
|
|||
|
</div>
|
|||
|
@endif
|
|||
|
|
|||
|
|
|||
|
@if ($message = Session::get('error'))
|
|||
|
<div class="alert alert-danger alert-block">
|
|||
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
|||
|
<strong>{{ $message }}</strong>
|
|||
|
</div>
|
|||
|
@endif
|
|||
|
|
|||
|
|
|||
|
@if ($message = Session::get('warning'))
|
|||
|
<div class="alert alert-warning alert-block">
|
|||
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
|||
|
<strong>{{ $message }}</strong>
|
|||
|
</div>
|
|||
|
@endif
|
|||
|
|
|||
|
|
|||
|
@if ($message = Session::get('info'))
|
|||
|
<div class="alert alert-info alert-block">
|
|||
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
|||
|
<strong>{{ $message }}</strong>
|
|||
|
</div>
|
|||
|
@endif
|
|||
|
|
|||
|
|
|||
|
@if ($errors->any())
|
|||
|
<div class="alert alert-danger">
|
|||
|
<ul>
|
|||
|
@foreach ($errors->all() as $error)
|
|||
|
<li>{{ $error }}</li>
|
|||
|
@endforeach
|
|||
|
</ul>
|
|||
|
</div>
|
|||
|
|
|||
|
@endif
|