Files
freeu-project/resources/views/verification/notice.blade.php
Ritikesh yadav c661166e1d first commit
2024-03-28 14:52:40 +05:30

21 lines
726 B
PHP

@extends('layouts.app-master')
@section('content')
<div class="bg-light p-5 rounded">
<h1>Dashboard</h1>
@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 action="{{ route('verification.resend') }}" method="POST" class="d-inline">
@csrf
<button type="submit" class="d-inline btn btn-link p-0">
click here to request another
</button>.
</form>
</div>
@endsection