Last change
on this file was dfae77e, checked in by Igor Danilovski <igor_danilovski@…>, 2 years ago |
|
-
Property mode
set to
100644
|
File size:
1.1 KB
|
Line | |
---|
1 | @extends('layouts.app')
|
---|
2 |
|
---|
3 | @section('content')
|
---|
4 | <div class="container">
|
---|
5 | <div class="row justify-content-center">
|
---|
6 | <div class="col-md-8">
|
---|
7 | <div class="card">
|
---|
8 | <div class="card-header">{{ __('Verify Your Email Address') }}</div>
|
---|
9 |
|
---|
10 | <div class="card-body">
|
---|
11 | @if (session('resent'))
|
---|
12 | <div class="alert alert-success" role="alert">
|
---|
13 | {{ __('A fresh verification link has been sent to your email address.') }}
|
---|
14 | </div>
|
---|
15 | @endif
|
---|
16 |
|
---|
17 | {{ __('Before proceeding, please check your email for a verification link.') }}
|
---|
18 | {{ __('If you did not receive the email') }},
|
---|
19 | <form class="d-inline" method="POST" action="{{ route('verification.resend') }}">
|
---|
20 | @csrf
|
---|
21 | <button type="submit" class="btn btn-link p-0 m-0 align-baseline">{{ __('click here to request another') }}</button>.
|
---|
22 | </form>
|
---|
23 | </div>
|
---|
24 | </div>
|
---|
25 | </div>
|
---|
26 | </div>
|
---|
27 | </div>
|
---|
28 | @endsection
|
---|
Note:
See
TracBrowser
for help on using the repository browser.