Files
newznab-tmux/resources/views/forum/partials/alerts.blade.php
T
2024-04-08 20:38:46 +02:00

12 lines
343 B
PHP

@if (Session::has('alerts'))
@foreach (Session::get('alerts') as $alert)
@include ('forum.partials.alert', $alert)
@endforeach
@endif
@if (isset($errors) && !$errors->isEmpty())
@foreach ($errors->all() as $error)
@include ('forum.partials.alert', ['type' => 'danger', 'message' => $error])
@endforeach
@endif