From c917a38b66880a65bf02d21b773d0075205a1a22 Mon Sep 17 00:00:00 2001 From: Azzumar Aydid Date: Mon, 7 Sep 2020 17:51:54 +0800 Subject: [PATCH] verification email design --- .../views/emails/account/user_verification.blade.php | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 resources/views/emails/account/user_verification.blade.php diff --git a/resources/views/emails/account/user_verification.blade.php b/resources/views/emails/account/user_verification.blade.php new file mode 100644 index 00000000..9f8a3596 --- /dev/null +++ b/resources/views/emails/account/user_verification.blade.php @@ -0,0 +1,11 @@ +@extends('emails.account.layout.base') + +@section('content') +

Hello, {{$user->name}}

+

verify your email to finish your account registration on https://www.izyim.com

+

Please confirm that {{$user->email}} is your email address by clicking on the button below or use this link {{route('email.verification', ['token' => $attempt->token])}} within 48 hours

+
+ +
+
If you didn't perform this request you can safely ignore this email.
+@endsection \ No newline at end of file