File tree 2 files changed +5
-5
lines changed
resources/js/pages/settings
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
namespace App \Models ;
4
4
5
- // use Illuminate\Contracts\Auth\MustVerifyEmail;
5
+ use Illuminate \Contracts \Auth \MustVerifyEmail ;
6
6
use Illuminate \Database \Eloquent \Factories \HasFactory ;
7
7
use Illuminate \Foundation \Auth \User as Authenticatable ;
8
8
use Illuminate \Notifications \Notifiable ;
9
9
10
- class User extends Authenticatable
10
+ class User extends Authenticatable implements MustVerifyEmail
11
11
{
12
12
/** @use HasFactory<\Database\Factories\UserFactory> */
13
13
use HasFactory, Notifiable;
Original file line number Diff line number Diff line change @@ -72,15 +72,15 @@ const submit = () => {
72
72
</div >
73
73
74
74
<div v-if =" mustVerifyEmail && !user.email_verified_at" >
75
- <p class =" mt-2 text-sm text-neutral-800 " >
75
+ <p class =" - mt-4 text-sm text-muted-foreground " >
76
76
Your email address is unverified.
77
77
<Link
78
78
:href =" route('verification.send')"
79
79
method =" post"
80
80
as =" button"
81
- class =" focus:outline-hidden rounded-md text-sm text -neutral-600 underline hover:text-neutral-900 focus:ring-2 focus:ring-offset-2 "
81
+ class =" hover:decoration-current! text-foreground underline decoration -neutral-300 underline-offset-4 transition-colors duration-300 ease-out dark:decoration-neutral-500 "
82
82
>
83
- Click here to re-send the verification email.
83
+ Click here to resend the verification email.
84
84
</Link >
85
85
</p >
86
86
You can’t perform that action at this time.
0 commit comments