snipe-it/resources/views/emails/forgot-password.blade.php
Andrés Núñez 40f00665b3 Translate emails (#2652)
* 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
2016-09-26 14:13:07 -07:00

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