Skip to content

Commit 5150382

Browse files
committed
work on formatting
1 parent c2fb274 commit 5150382

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/Models/User.php

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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-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

0 commit comments

Comments
 (0)