mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
14 lines
374 B
PHP
Executable file
14 lines
374 B
PHP
Executable file
@extends('emails/layouts/default')
|
|
|
|
@section('content')
|
|
<p>Hello {{ $user->first_name }},</p>
|
|
|
|
<p>Please click on the following link to update your {{ \App\Models\Setting::getSettings()->site_name }} password:</p>
|
|
|
|
<p><a href="{{ $forgotPasswordUrl }}">{{ $forgotPasswordUrl }}</a></p>
|
|
|
|
<p>Best regards,</p>
|
|
|
|
<p>{{ \App\Models\Setting::getSettings()->site_name }}</p>
|
|
@stop
|