mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -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
17 lines
492 B
PHP
17 lines
492 B
PHP
@extends('emails/layouts/default')
|
|
|
|
@section('content')
|
|
<p>{{ trans('mail.hello') }} {{ $first_name }},</p>
|
|
|
|
<p>{{ trans('mail.admin_has_created', ['web' => \App\Models\Setting::getSettings()->site_name]) }} </p>
|
|
|
|
<p>URL: <a href="{{ config('app.url') }}">{{ config('app.url') }}</a><br>
|
|
{{ trans('mail.login') }} {{ $username }} <br>
|
|
{{ trans('mail.password') }} {{ $password }}
|
|
</p>
|
|
|
|
<p>{{ trans('mail.best_regards') }}</p>
|
|
|
|
<p>{{ \App\Models\Setting::getSettings()->site_name }}</p>
|
|
@stop
|