mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-02-24 11:13:02 +01:00
16 lines
420 B
PHP
16 lines
420 B
PHP
@if (session()->has('alert.message'))
|
|
<div class="notification is-{{ session()->get('alert.style') }}" role="alert">
|
|
{!! session()->get('alert.message') !!}
|
|
</div><!-- /alert -->
|
|
@endif
|
|
|
|
@if ($errors->any())
|
|
<div class="notification is-danger">
|
|
<ul>
|
|
@foreach ($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|