diff --git a/resources/views/auth/verify.blade.php b/resources/views/auth/verify.blade.php index f5805cc..3be966b 100644 --- a/resources/views/auth/verify.blade.php +++ b/resources/views/auth/verify.blade.php @@ -1,20 +1,31 @@ @extends('layouts.app') @section('content') -

验证邮件地址

+
+
+ @if (session('resent')) + + + +
{{ __('A fresh verification link has been sent to your email address.') }}
+ @else + + + +

验证电子邮件地址

+ {{ __('Before proceeding, please check your email for a verification link.') }} + {{ __('If you did not receive the email') }}, +
+ @csrf + + 。 +
- @if (session('resent')) - {{ __('A fresh verification link has been sent to your email address.') }} - @else - {{ __('Before proceeding, please check your email for a verification link.') }} - {{ __('If you did not receive the email') }}, -
- @csrf - - 。 -
+

我们将会删除超过 3 天没有验证邮箱的用户。

+ @endif + +
+
-

我们将会删除超过 3 天没有验证邮箱的用户。

- @endif @endsection