cotizaweb/resources/views/auth/verify.blade.php
jesusfb 161fcee049
Some checks are pending
Deploy to EC2 cotiza / deploy (push) Waiting to run
first commit
2026-04-24 12:53:27 -07:00

26 lines
935 B
PHP

@extends('layouts.app')
@section('content')
<div class="card-body login-card-body">
<p class="login-box-msg">{{ __('Verify Your Email Address') }}</p>
@if (session('resent'))
<div class="alert alert-success" role="alert">
{{ __('A fresh verification link has been sent to your email address.') }}
</div>
@endif
{{ __('Before proceeding, please check your email for a verification link.') }}
{{ __('If you did not receive the email') }},
<form class="d-inline" method="POST" action="{{ route('verification.resend') }}">
@csrf
<div class="row">
<div class="col-12">
<button type="submit"
class="btn btn-primary btn-block">{{ __('click here to request another') }}</button>
</div>
</div>
</form>
</div>
@endsection