3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus-Panel/resources/views/auth/verify.blade.php

24 lines
816 B
PHP
Raw Normal View History

2021-06-29 20:05:00 +00:00
@extends('layouts.default')
2020-02-26 13:59:58 +00:00
2021-06-29 20:05:00 +00:00
@section('body')
2020-02-26 13:59:58 +00:00
<div class="page">
<div class="form">
2021-06-29 20:05:00 +00:00
@component('components.title')
@endcomponent
2020-02-26 13:59:58 +00:00
@if (session('resent'))
<div class="alert alert-success" role="alert">
{{ __('Email has been resend.') }}
<a class="close" data-dismiss="alert" aria-label="close">&times;</a>
</div>
@endif
<p>{{ __('Before proceeding, please check your email for a verification link. If you did not receive an email press the button bellow to resend the email.') }}</p>
<form method="POST" action="{{ route('verification.resend') }}">
@csrf
2021-06-29 20:05:00 +00:00
<button type="submit" class="btn btn-custom" style="width: 100%">{{ __('Resend Email') }}</button>
2020-02-26 13:59:58 +00:00
</form>
</div>
</div>
2021-06-29 20:05:00 +00:00
@endsection