mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
40f00665b3
* commit temporal * final translation commit -- added email translations * final translation commit -- removed file for spanish translations * final translation commit -- removed file for spanish translations * added missing translations * method overrided and config files back to default * config files back to default * config files back to default
14 lines
404 B
PHP
Executable file
14 lines
404 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' => \App\Models\Setting::getSettings()->site_name]) }} </p>
|
|
|
|
<p><a href="{{ $forgotPasswordUrl }}">{{ $forgotPasswordUrl }}</a></p>
|
|
|
|
<p>{{ trans('mail.best_regards') }}</p>
|
|
|
|
<p>{{ \App\Models\Setting::getSettings()->site_name }}</p>
|
|
@stop
|