first
This commit is contained in:
29
resources/views/auth/verify-email.blade.php
Normal file
29
resources/views/auth/verify-email.blade.php
Normal file
@@ -0,0 +1,29 @@
|
||||
@extends('layouts.guest')
|
||||
|
||||
@section('title', 'Sahkan Emel')
|
||||
|
||||
@section('content')
|
||||
<div class="mb-4">
|
||||
<div class="eyebrow">Pengesahan emel</div>
|
||||
<h1 class="h4 mt-2 mb-1">Sahkan emel</h1>
|
||||
<p class="text-secondary mb-0">Pautan pengesahan telah dihantar ke emel akaun anda.</p>
|
||||
</div>
|
||||
|
||||
@if (session('status') === 'verification-link-sent')
|
||||
<div class="alert alert-success" role="alert">
|
||||
Pautan pengesahan baru telah dihantar.
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div class="d-flex justify-content-between align-items-center gap-3">
|
||||
<form method="POST" action="{{ route('verification.send') }}">
|
||||
@csrf
|
||||
<button type="submit" class="btn btn-primary">Hantar semula</button>
|
||||
</form>
|
||||
|
||||
<form method="POST" action="{{ route('logout') }}">
|
||||
@csrf
|
||||
<button type="submit" class="btn btn-link p-0">Log keluar</button>
|
||||
</form>
|
||||
</div>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user