mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-27 14:39:49 -08:00
14 lines
393 B
PHP
Executable file
14 lines
393 B
PHP
Executable file
@extends('emails/layouts/default')
|
|
|
|
@section('content')
|
|
<p>{{ trans('mail.hello') }} {{ $user->first_name }},</p>
|
|
|
|
<p>{{ trans('mail.link_to_update_password', ['web' => $snipeSettings->site_name]) }} </p>
|
|
|
|
<p><a href="{{ $forgotPasswordUrl }}">{{ $forgotPasswordUrl }}</a></p>
|
|
|
|
<p>{{ trans('mail.best_regards') }}</p>
|
|
|
|
<p><a href="{{ url('/') }}">{{ $snipeSettings->site_name }}</a></p>
|
|
@stop
|