diff --git a/resources/views/emails/accounts/user_verification.blade.php b/resources/views/emails/accounts/user_verification.blade.php new file mode 100644 index 00000000..1f711740 --- /dev/null +++ b/resources/views/emails/accounts/user_verification.blade.php @@ -0,0 +1,11 @@ +@extends('emails.layout.base') + +@section('content') +

Hello, {{$user->name}}

+

verify your email to finish your account registration on {{route('login')}}

+

Please confirm that {{$user->email}} is your email address by clicking on the button below or use this link {{route('account.email.verification', $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 diff --git a/resources/views/emails/layout/base.blade.php b/resources/views/emails/layout/base.blade.php new file mode 100644 index 00000000..0f58c396 --- /dev/null +++ b/resources/views/emails/layout/base.blade.php @@ -0,0 +1,135 @@ + + + + + + + +
+
+
+
+ @include('emails.layout.header') +
+
+ @yield('content') +
You're receiving this email because of your account on {{route('login')}}.
+ +
+
+
+
+ ©{{\Carbon\Carbon::now()->format('Y')}} CIEF Worldwide Snd Bhd. All rights reserved +
+
+
+
+ + \ No newline at end of file diff --git a/resources/views/emails/layout/header.blade.php b/resources/views/emails/layout/header.blade.php new file mode 100644 index 00000000..7899e245 --- /dev/null +++ b/resources/views/emails/layout/header.blade.php @@ -0,0 +1,5 @@ +
+

Shipping

+
+ Shipping Vendor +
\ No newline at end of file