PATH:
home
/
rwabteecom
/
project_11
/
resources
/
views
/
admin
/
auth
/
Editing: verify.blade.php
@extends('admin.layouts.auth') @section('content') <div class="mb-10"> @if (session('resent')) <div class="alert alert-success" role="alert"> {{ __('A fresh verification link has been sent to your email address.') }} </div> @endif <h2> {{ __('Before proceeding, please check your email for a verification link.') }} {{ __('If you did not receive the email') }}, </h2> <form class="text-center mt-3" method="POST" action="{{ route('admin.verification.resend') }}"> @csrf <button type="submit" class="btn btn-primary">{{ __('click here to request another') }}</button> </form> </div> @endsection
SAVE
CANCEL