2025-09-26 17:41:28 -05:00
< x - layouts . guest >
< x - ui . authentication - card >
2024-08-01 13:53:10 -05:00
< x - slot name = " logo " >
2024-08-23 21:59:42 -05:00
< div class = " w-24 mb-10 " >
2025-09-26 17:41:28 -05:00
< x - ui . logo />
2024-08-23 21:59:42 -05:00
</ div >
2024-08-01 13:53:10 -05:00
</ x - slot >
< div class = " mb-4 text-sm text-gray-600 dark:text-gray-400 " >
{{ __ ( 'Before continuing, 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.' ) }}
</ div >
@ if ( session ( 'status' ) == 'verification-link-sent' )
2025-09-26 17:41:28 -05:00
< x - ui . alert icon = " o-envelope " class = " alert-success mb-4 " >
2024-08-01 13:53:10 -05:00
{{ __ ( 'A new verification link has been sent to the email address you provided in your profile settings.' ) }}
2025-09-26 17:41:28 -05:00
</ x - ui . alert >
2024-08-01 13:53:10 -05:00
@ endif
< div class = " mt-4 flex items-center justify-between " >
< form method = " POST " action = " { { route('verification.send') }} " >
@ csrf
< div >
2025-09-26 17:41:28 -05:00
< x - ui . button label = " { { __('Resend Verification Email') }} " type = " submit " class = " bg-primary hover:bg-secondary focus:ring-2 focus:ring-offset-2 focus:ring-neutral-900 focus:shadow-outline focus:outline-none " />
2024-08-01 13:53:10 -05:00
</ div >
</ form >
< div >
< a
href = " { { route('profile.show') }} "
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-indigo-500 dark:focus:ring-offset-gray-800 "
>
{{ __ ( 'Edit Profile' ) }} </ a >
< form method = " POST " action = " { { route('logout') }} " class = " inline " >
@ csrf
< 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-indigo-500 dark:focus:ring-offset-gray-800 ms-2 " >
{{ __ ( 'Log Out' ) }}
</ button >
</ form >
</ div >
</ div >
2025-09-26 17:41:28 -05:00
</ x - ui . authentication - card >
</ x - layouts . guest >