@extends('layouts.auth')

@section('htmlheader_title')
	Verify your Email
@endsection

@section('content')
	<form class="needs-validation" method="post" action="{{ route('verification.resend') }}" novalidate>
		@csrf

		<div class="row">
			<div class="col-6 m-auto">
				<div class="greyframe titledbox shadow0xb0 text-center">
					<h2 class="cap">Verify</h2>

					<div class="row">
						<div class="col-12">
							{{ __('Before proceeding, please check your email for a verification link.') }}
							{{ __('If you did not receive the email') }},
							<button type="submit" class="btn btn-link p-0" style="text-decoration: none;line-height: 1.0;">{{ __('click here to request another') }}</button>.
						</div>
					</div>
				</div>
			</div>
		</div>
	</form>
@endsection