2024-05-13 18:55:34 -04:00
|
|
|
<x-guest-layout>
|
|
|
|
<x-authentication-card>
|
|
|
|
<x-slot name="logo">
|
|
|
|
<x-authentication-card-logo />
|
|
|
|
</x-slot>
|
|
|
|
|
2024-06-23 18:53:12 -04:00
|
|
|
<div class="mb-4 text-sm text-gray-600 dark:text-gray-400">
|
2024-07-06 19:45:42 -04:00
|
|
|
{{ __('Before continuing, please verify your email address. Click the button below and check your email for a verification link.') }}
|
2024-05-13 18:55:34 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
@if (session('status') == 'verification-link-sent')
|
2024-06-23 18:53:12 -04:00
|
|
|
<div class="mb-4 font-medium text-sm text-green-600 dark:text-green-400">
|
2024-07-06 19:45:42 -04:00
|
|
|
{{ __('A verification link has been sent to the email address you provided in your profile settings.') }}
|
2024-05-13 18:55:34 -04:00
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
<div class="mt-4 flex items-center justify-between">
|
|
|
|
<form method="POST" action="{{ route('verification.send') }}">
|
|
|
|
@csrf
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<x-button type="submit">
|
2024-07-06 19:45:42 -04:00
|
|
|
{{ __('Send Verification Email') }}
|
2024-05-13 18:55:34 -04:00
|
|
|
</x-button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<a
|
|
|
|
href="{{ route('profile.show') }}"
|
2024-06-23 18:53:12 -04:00
|
|
|
class="underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500"
|
2024-05-13 18:55:34 -04:00
|
|
|
>
|
|
|
|
{{ __('Edit Profile') }}</a>
|
|
|
|
|
|
|
|
<form method="POST" action="{{ route('logout') }}" class="inline">
|
|
|
|
@csrf
|
|
|
|
|
2024-06-23 18:53:12 -04:00
|
|
|
<button type="submit" class="underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500 ms-2">
|
2024-05-13 18:55:34 -04:00
|
|
|
{{ __('Log Out') }}
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</x-authentication-card>
|
|
|
|
</x-guest-layout>
|