mirror of https://github.com/pixelfed/pixelfed.git
Update settings template view
This commit is contained in:
parent
8da6978a87
commit
cb96de0f52
|
@ -14,10 +14,10 @@
|
||||||
{{ session('status') }}
|
{{ session('status') }}
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
@if ($errors->any())
|
@if (session('errors'))
|
||||||
<div class="alert alert-danger">
|
<div class="alert alert-danger">
|
||||||
<ul class="mb-0">
|
<ul class="mb-0">
|
||||||
@foreach ($errors->all() as $error)
|
@foreach (session('errors') as $error)
|
||||||
<li class="font-weight-bold">{{ $error }}</li>
|
<li class="font-weight-bold">{{ $error }}</li>
|
||||||
@endforeach
|
@endforeach
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Reference in New Issue