mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-30 17:58:59 +00:00
12 lines
343 B
PHP
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
|