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-05-13 18:55:34 -04:00
{{ __ ( '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' )
2024-06-23 18:53:12 -04:00
< div class = " mb-4 font-medium text-sm text-green-600 dark:text-green-400 " >
2024-05-13 18:55:34 -04:00
{{ __ ( 'A new verification link has been sent to the email address you provided in your profile settings.' ) }}
</ div >
@ endif
< div class = " mt-4 flex items-center justify-between " >
< form method = " POST " action = " { { route('verification.send') }} " >
@ csrf
< div >
< x - button type = " submit " >
{{ __ ( 'Resend Verification Email' ) }}
</ 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 >