|
0
|
1 <x-guest-layout>
|
|
|
2 <div class="mb-4 text-muted">
|
|
|
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.') }}
|
|
|
4 </div>
|
|
|
5
|
|
|
6 @if (session('status') == 'verification-link-sent')
|
|
|
7 <div class="mb-4 font-weight-medium text-success">
|
|
|
8 {{ __('A new verification link has been sent to the email address you provided during registration.') }}
|
|
|
9 </div>
|
|
|
10 @endif
|
|
|
11
|
|
|
12 <div class="mt-4 d-flex align-items-center justify-content-between">
|
|
|
13 <form method="POST" action="{{ route('verification.send') }}">
|
|
|
14 @csrf
|
|
|
15
|
|
|
16 <div>
|
|
|
17 <x-primary-button>
|
|
|
18 {{ __('Resend Verification Email') }}
|
|
|
19 </x-primary-button>
|
|
|
20 </div>
|
|
|
21 </form>
|
|
|
22
|
|
|
23 <form method="POST" action="{{ route('logout') }}">
|
|
|
24 @csrf
|
|
|
25
|
|
|
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">
|
|
|
27 {{ __('Log Out') }}
|
|
|
28 </button>
|
|
|
29 </form>
|
|
|
30 </div>
|
|
|
31 </x-guest-layout>
|