<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>إعادة تعيين كلمة المرور🔑</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&display=swap');
body {
background-color: #f5f4f1;
color: #333;
display: flex;
justify-content: center;
flex-direction: column;
}
.container {
background-color: #ffffff;
padding: 30px;
border-radius: 8px;
border: #e5e3e0 solid 1px;
width: 50%;
margin: auto;
display: flex;
justify-content: center;
flex-direction: column;
}
h1 {
font-size: 24px;
color: #333;
}
p {
font-size: 16px;
color: #555;
}
a {
background-color: #00464d;
text-align: center;
color: white;
padding: 5px;
text-decoration: none;
font-size: 16px;
border-radius: 5px;
display: inline-block;
margin-top: 20px;
}
img {
margin: auto;
width: 200px;
}
</style>
</head>
<body>
<img src="{{asset('logo.png')}}" alt="">
<div class="container">
<h1>إعادة تعيين كلمة المرور🔑</h1>
<p>
مرحبا
<br/>
لقد تلقينا طلبا لإعادة تعيين كلمة المرور الخاصة بك, إذا كنت أنت من طلب ذلك فقط انقر على الزر أدناه واختر كلمة
مرور جديدة.
</p>
<a href="{{ $url }}">
إعادة تعيين كلمة المرور
</a>
<p style="font-size: 16px; color: #555; margin-top: 20px;">
إذا لم تطلب تغيير كلمة المرور، فلا تقلق! كلمة المرور الخاصة بك لا تزال امنة ويمكنك حذف هذا البريد الإلكتروني
</p>
<p style="font-size: 16px; color: #555;">
شكرا،
<br/>
فريق منصة الابتعاث
</p>
</div>
</body>
</html>
<?php
namespace App\Notifications;
use Illuminate\Auth\Notifications\ResetPassword as ResetPasswordNotification;
use Illuminate\Notifications\Messages\MailMessage;
class CustomResetPassword extends ResetPasswordNotification
{
public function toMail($notifiable)
{
$url = url(env('CLIENT_URL')."password-reset/".$this->token."/".urlencode($notifiable->email));
return (new MailMessage)
->subject('إعادة تعيين كلمة المرور')
->view('emails.reset', ['url' => $url]);
}
}
تقريبا نفس فكرة بس تظهر زي مافي صورة لكن في ميلتراب تظهر تنسيقات