annotate resources/views/auth/verify-email.blade.php @ 2:90296614b7e2 default tip

Adding in the base for the clients table
author luka
date Thu, 28 Aug 2025 20:55:40 -0400
parents 9d7dcd54c677
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
1 <x-guest-layout>
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
2 <div class="mb-4 text-muted">
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
3 {{ __('Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we just emailed to you? If you didn\'t receive the email, we will gladly send you another.') }}
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
4 </div>
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
5
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
6 @if (session('status') == 'verification-link-sent')
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
7 <div class="mb-4 font-weight-medium text-success">
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
8 {{ __('A new verification link has been sent to the email address you provided during registration.') }}
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
9 </div>
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
10 @endif
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
11
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
12 <div class="mt-4 d-flex align-items-center justify-content-between">
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
13 <form method="POST" action="{{ route('verification.send') }}">
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
14 @csrf
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
15
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
16 <div>
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
17 <x-primary-button>
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
18 {{ __('Resend Verification Email') }}
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
19 </x-primary-button>
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
20 </div>
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
21 </form>
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
22
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
23 <form method="POST" action="{{ route('logout') }}">
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
24 @csrf
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
25
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
26 <button type="submit" class="text-decoration-underline text-muted hover:text-dark rounded focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary">
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
27 {{ __('Log Out') }}
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
28 </button>
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
29 </form>
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
30 </div>
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
31 </x-guest-layout>