@@ -74,7 +74,7 @@ class="border-2 border-solid border-dark-blue-200 w-full rounded-full h-12 px-4
7474 <p class =" mb-4 text-base text-slate-500" >
7575 A separate notice was sent to {{ $profileUser -> email } } — that email does not contain the confirmation link.
7676 </p >
77- <div class =" flex flex-col tablet:flex-row gap-4" >
77+ <div class =" flex flex-col tablet:flex-row gap-4 mb-6 " >
7878 <form method =" POST" action =" {{ route (' user.email-change.resend' ) } }" >
7979 {{ csrf_field () } }
8080 <button type =" submit" class =" bg-dark-blue text-white rounded-full py-2.5 px-6 font-semibold text-base" >
@@ -88,6 +88,29 @@ class="border-2 border-solid border-dark-blue-200 w-full rounded-full h-12 px-4
8888 </button >
8989 </form >
9090 </div >
91+ <div class =" border-t border-dark-blue-200 pt-4" >
92+ <p class =" mb-3 font-medium text-dark-blue" >Can't find the email at {{ $profileUser -> pending_email } } ?</p >
93+ <p class =" mb-4 text-base text-slate-500" >
94+ If you can access that inbox elsewhere (for example a shared team mailbox), check there first.
95+ Otherwise, while you are signed in here, you can confirm the change on this page.
96+ </p >
97+ <form method =" POST" action =" {{ route (' user.email-change.confirm-here' ) } }" >
98+ {{ csrf_field () } }
99+ @if (empty ($profileUser -> provider ) )
100+ <div class =" mb-3" >
101+ <label class =" block text-lg text-slate-500 mb-2" for =" confirm_password" >Current password *</label >
102+ <input id =" confirm_password" type =" password" name =" confirm_password"
103+ class =" border-2 border-solid border-dark-blue-200 w-full rounded-full h-12 px-4 appearance-none text-slate-600"
104+ required autocomplete =" current-password" >
105+ @component (' components.validation-errors' , [' field' => ' confirm_password' ] )@endcomponent
106+ </div >
107+ @endif
108+ <button type =" submit"
109+ class =" bg-primary hover:bg-hover-orange duration-300 text-[#20262C] rounded-full py-2.5 px-6 font-semibold text-base" >
110+ Confirm change to {{ $profileUser -> pending_email } }
111+ </button >
112+ </form >
113+ </div >
91114 </div >
92115 @else
93116 <div class =" border-2 border-solid border-dark-blue-200 rounded-xl px-5 py-4" >
0 commit comments