File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
resources/js/pages/settings Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 22
33namespace App \Models ;
44
5- // use Illuminate\Contracts\Auth\MustVerifyEmail;
5+ use Illuminate \Contracts \Auth \MustVerifyEmail ;
66use Illuminate \Database \Eloquent \Factories \HasFactory ;
77use Illuminate \Foundation \Auth \User as Authenticatable ;
88use Illuminate \Notifications \Notifiable ;
99
10- class User extends Authenticatable
10+ class User extends Authenticatable implements MustVerifyEmail
1111{
1212 /** @use HasFactory<\Database\Factories\UserFactory> */
1313 use HasFactory, Notifiable;
Original file line number Diff line number Diff line change @@ -72,15 +72,15 @@ const submit = () => {
7272 </div >
7373
7474 <div v-if =" mustVerifyEmail && !user.email_verified_at" >
75- <p class =" mt-2 text-sm text-muted-foreground" >
75+ <p class =" - mt-4 text-sm text-muted-foreground" >
7676 Your email address is unverified.
7777 <Link
7878 :href =" route('verification.send')"
7979 method =" post"
8080 as =" button"
8181 class =" hover:decoration-current! text-foreground underline decoration-neutral-300 underline-offset-4 transition-colors duration-300 ease-out dark:decoration-neutral-500"
8282 >
83- Click here to re-send the verification email.
83+ Click here to resend the verification email.
8484 </Link >
8585 </p >
8686
You can’t perform that action at this time.
0 commit comments