44 lines
1.5 KiB
PHP
44 lines
1.5 KiB
PHP
<x-layout.guest>
|
|
<x-slot:heading>Verify Email</x-slot:heading>
|
|
@if ($errors->any())
|
|
<div>
|
|
<div>Something went wrong!</div>
|
|
|
|
<ul>
|
|
@foreach($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
<div class="mt-10 sm:mx-auto sm:w-full sm:max-w-[480px]">
|
|
<div class="bg-white px-6 py-12 shadow sm:rounded-lg sm:px-12">
|
|
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.
|
|
|
|
@if(session('status') == 'verification-link-sent')
|
|
<div class="text-green-600 mt-6">
|
|
A new verification link has been sent to the email address you provided during registration.
|
|
</div>
|
|
@endif
|
|
|
|
<div class="mt-4 flex items-center justify-between">
|
|
<form method="POST" action="{{ route('verification.send') }}">
|
|
@csrf
|
|
|
|
<div>
|
|
<x-auth.form-button>Resend Verification Email</x-auth.form-button>
|
|
</div>
|
|
</form>
|
|
|
|
<form method="POST" action="{{ route('logout') }}">
|
|
@csrf
|
|
|
|
<x-auth.form-button>Logout</x-auth.form-button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</x-layout.guest>
|