verify-email.blade.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <x-guest-layout>
  2. <x-auth-card>
  3. <x-slot name="logo">
  4. <a href="/">
  5. <x-application-logo class="w-20 h-20 fill-current text-burnt hover:text-yelmax" />
  6. </a>
  7. </x-slot>
  8. <div class="mb-4 text-sm text-crayola">
  9. {{ __('Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we just emailed to you? If you didn\'t receive the email, we will gladly send you another.') }}
  10. </div>
  11. @if (session('status') == 'verification-link-sent')
  12. <div class="mb-4 font-medium text-sm text-green-600">
  13. {{ __('A new verification link has been sent to the email address you provided during registration.') }}
  14. </div>
  15. @endif
  16. <div class="mt-4 flex items-center justify-between">
  17. <form method="POST" action="{{ route('verification.send') }}">
  18. @csrf
  19. <div>
  20. <x-button>
  21. {{ __('Resend Verification Email') }}
  22. </x-button>
  23. </div>
  24. </form>
  25. <form method="POST" action="{{ route('logout') }}">
  26. @csrf
  27. <button type="submit" class="underline text-sm">
  28. {{ __('Log Out') }}
  29. </button>
  30. </form>
  31. </div>
  32. </x-auth-card>
  33. </x-guest-layout>