Files
kulakpos_web/resources/views/mail/welcome.blade.php

57 lines
1.3 KiB
PHP
Raw Normal View History

2026-03-15 17:08:23 +07:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
}
p {
color: #666;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #007BFF;
color: #fff;
text-decoration: none;
border-radius: 3px;
}
.text-dark {
color: #000;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>{{ __('Hi,') }} {{ $mesasge['name'] ?? '' }}. {{ __('Welcome to') }} {{ env('APP_NAME') }}!</h1>
<p>{{ __('Your account has been created successfully.') }}</p>
<p><strong>{{ __('OTP:') }}</strong> {{ __('Dear') }} {{ $data['name'] ?? '' }}, {{ __('your OTP code is') }} <b class="text-dark">{{ $data['code'] ?? '' }}</b>. {{ __('Please do not share this PIN with anyone') }}.</p>
<p>{{ __('Best Regards,') }}<br>{{ env('APP_NAME') }}</p>
</div>
</body>
</html>