改进 邮箱验证显示

This commit is contained in:
iVampireSP.com 2023-03-06 19:22:34 +08:00
parent 9a5a98de7a
commit e3ac88239c
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132
2 changed files with 8 additions and 3 deletions

View File

@ -26,7 +26,9 @@
<span>注册时间: {{ $user->created_at }}</span> <br/>
<span>邮箱: {{ $user->email }}</span> <br/>
<span>邮箱: {{ $user->email }} @if(!$user->hasVerifiedEmail())
<small class="text-muted">没有验证</small>
@endif</span> <br/>
@if ($user->birthday_at)
@ -244,7 +246,8 @@
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger mt-3" onclick="return confirm('请再次确认要删除此用户吗?')">删除</button>
<button type="submit" class="btn btn-danger mt-3" onclick="return confirm('请再次确认要删除此用户吗?')">删除
</button>
</form>

View File

@ -56,7 +56,9 @@
</a>
</td>
<td>
{{ $user->email }}
{{ $user->email }} @if(!$user->hasVerifiedEmail())
<small class="text-muted">没有验证</small>
@endif
</td>
<td>
@if ($user->hasBalance())