verify.blade.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @extends('auth.layout')
  2. @section('content')
  3. <div id="verifyForm" class="container-fluid">
  4. <header>
  5. <a href="/" type="text/html" rel="noreferrer" referrerpolicy="no-referrer">
  6. {{ strtoupper(config('app.name')) }}
  7. </a>
  8. </header>
  9. <main>
  10. <h5>{{ __('Verify Your Email Address') }}</h5>
  11. @if (session('resent'))
  12. <div class="alert alert-success" role="alert">
  13. {{ __('A fresh verification link has been sent to your email address.') }}
  14. </div>
  15. @endif
  16. {{ __('Before proceeding, please check your email for a verification link.') }}<br/>
  17. {{ __('If you did not receive the email') }},
  18. <form class="d-inline" method="POST" action="{{ route('verification.resend') }}">
  19. @csrf
  20. <button type="submit" class="btn btn-link p-0 m-0 align-baseline">
  21. {{ __('click here to request another') }}
  22. </button>
  23. </form>
  24. <hr/>
  25. <footer>
  26. Copyright (C) @ {{ date('Y') }} {{ config('company_name') }} Corp. All Rights Reserved.
  27. </footer>
  28. </main>
  29. </div>
  30. @endsection
  31. @push('styles')
  32. <link rel="stylesheet" href="{{ asset('css/auth/verify.css') }}"/>
  33. @endpush