1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-02-24 11:13:02 +01:00
LinkAce/resources/views/partials/alerts.blade.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