mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-17 20:11:27 +00:00
Update blade views
This commit is contained in:
parent
0c6e885b6f
commit
52cc609092
2 changed files with 13 additions and 0 deletions
|
@ -23,6 +23,13 @@
|
|||
</div>
|
||||
</div>
|
||||
@endif
|
||||
@if (session('error'))
|
||||
<div class="col-12" id="flash">
|
||||
<div class="alert alert-danger">
|
||||
{{ session('error') }}
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
<div class="col-12">
|
||||
<ul class="nav nav-pills my-3">
|
||||
<li class="nav-item">
|
||||
|
|
|
@ -110,6 +110,11 @@
|
|||
@if($message->responded_at)
|
||||
<p class="mb-0">{{$message->response}}</p>
|
||||
@else
|
||||
@if(config('mail.default') === 'log')
|
||||
<div class="alert alert-danger">
|
||||
<p class="mb-0">You need to configure your mail driver before you can send outgoing emails.</p>
|
||||
</div>
|
||||
@else
|
||||
<form method="post" id="mform">
|
||||
@csrf
|
||||
<div class="form-group">
|
||||
|
@ -142,6 +147,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</form>
|
||||
@endif
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue