Updated to Laravel 9, small fixes, and more
This commit is contained in:
parent
6fc52ee512
commit
9fd844ae1a
24 changed files with 5589 additions and 2557 deletions
|
@ -1,23 +1,36 @@
|
|||
@extends('layouts.default')
|
||||
@extends('layouts.form')
|
||||
|
||||
@section('body')
|
||||
<div class="page">
|
||||
<div class="form">
|
||||
@component('components.title')
|
||||
@endcomponent
|
||||
@if (session('resent'))
|
||||
|
||||
<div class="alert alert-success" role="alert">
|
||||
{{ __('Email has been resend.') }}
|
||||
<a class="close" data-dismiss="alert" aria-label="close">×</a>
|
||||
<div class="login-page">
|
||||
<div class="login-text">
|
||||
@component('components.title')
|
||||
@endcomponent
|
||||
</div>
|
||||
<div class="login-body">
|
||||
<div>
|
||||
<form method="POST" action="{{ route('verification.resend') }}">
|
||||
@csrf
|
||||
|
||||
@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
|
||||
<button type="submit" class="btn btn-custom" style="width: 100%">{{ __('Resend Email') }}</button>
|
||||
</form>
|
||||
@if (session('resent'))
|
||||
|
||||
<div class="alert alert-success" role="alert">
|
||||
{{ __('Email has been resend.') }}
|
||||
<a class="close" data-dismiss="alert" aria-label="close">×</a>
|
||||
</div>
|
||||
|
||||
@endif
|
||||
|
||||
<div class="col-xs-12">
|
||||
<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>
|
||||
|
||||
<button type="submit" class="btn btn-custom" style="width: 100%; margin-top: 1rem">{{ __('Resend Email') }}</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="login-footer">
|
||||
<span>Copyright © 2019-{{ date('Y') }} <a href="https://www.iobyte.nl/"><img src="{{ asset('assets/img/logo.png') }}" alt="IOByte"></a>. All rights reserved.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
|
Reference in a new issue