Skip to content

Commit 609e1b5

Browse files
committed
Merge branch 'mavrickthiry/main'
2 parents 7fd0944 + 5150382 commit 609e1b5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

app/Models/User.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
namespace App\Models;
44

5-
// use Illuminate\Contracts\Auth\MustVerifyEmail;
5+
use Illuminate\Contracts\Auth\MustVerifyEmail;
66
use Illuminate\Database\Eloquent\Factories\HasFactory;
77
use Illuminate\Foundation\Auth\User as Authenticatable;
88
use 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;

resources/js/pages/settings/Profile.vue

+3-3
Original file line numberDiff line numberDiff 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-neutral-800">
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"
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"
8282
>
83-
Click here to re-send the verification email.
83+
Click here to resend the verification email.
8484
</Link>
8585
</p>
8686

0 commit comments

Comments
 (0)