Skip to content

Commit 7bcf37f

Browse files
add verify template
1 parent 0706aee commit 7bcf37f

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
@extends('layouts.app')
2+
3+
@section('content')
4+
<div class="flex items-center">
5+
<div class="md:w-1/2 md:mx-auto">
6+
<div class="rounded shadow">
7+
<div class="font-medium text-lg text-teal-darker bg-teal p-3 rounded-t">
8+
{{ __('Verify your Email Address') }}
9+
</div>
10+
<div class="bg-white p-3 rounded-b">
11+
@if (session('resent'))
12+
<div class="bg-green-lightest border border-green-light text-green-dark text-sm px-4 py-3 rounded mb-4">
13+
{{ __('A fresh verification link has been sent to your email address.') }}
14+
</div>
15+
@endif
16+
17+
<p class="text-grey-dark">
18+
{{ __('Before proceeding, please check your email for a verification link.') }}
19+
{{ __('If you did not receive the email') }}, <a href="{{ route('verification.resend') }}" class="no-underline hover:underline text-teal-darker">{{ __('click here to request another') }}</a>.
20+
</p>
21+
</div>
22+
</div>
23+
</div>
24+
</div>
25+
@endsection

0 commit comments

Comments
 (0)