@extends('admin.layouts.email_template')
@section('content')
@php
if(auth('company')->check()){
$link = route('company.email-verification.check', $user->verification_token);
}elseif(auth()->check()){
$link = route('email-verification.check', $user->verification_token);
}
@endphp
Dear {{ $user->name }} , |
|
Thank you for registering with us! We're excited to have you on board. To get started, please verify your email address by clicking the button below.
|
| Click here to verify your account |
Or copy and paste this URL in browser {{ $link . '?email=' . urlencode($user->email) }} |
|
Warm regards,
{{ $siteSetting->site_name }} Team
|
|
|
@endsection