mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update settings template view
This commit is contained in:
parent
8da6978a87
commit
cb96de0f52
1 changed files with 2 additions and 2 deletions
|
@ -14,10 +14,10 @@
|
|||
{{ session('status') }}
|
||||
</div>
|
||||
@endif
|
||||
@if ($errors->any())
|
||||
@if (session('errors'))
|
||||
<div class="alert alert-danger">
|
||||
<ul class="mb-0">
|
||||
@foreach ($errors->all() as $error)
|
||||
@foreach (session('errors') as $error)
|
||||
<li class="font-weight-bold">{{ $error }}</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
|
|
Loading…
Reference in a new issue