mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
17 lines
435 B
PHP
17 lines
435 B
PHP
@extends('emails/layouts/default')
|
|
|
|
@section('content')
|
|
<p>Hello {{ $first_name }},</p>
|
|
|
|
<p>An administrator has created an account for you on the {{ \App\Models\Setting::getSettings()->site_name }} website. </p>
|
|
|
|
<p>URL: <a href="{{ config('app.url') }}">{{ config('app.url') }}</a><br>
|
|
Login: {{ $username }} <br>
|
|
Password: {{ $password }}
|
|
</p>
|
|
|
|
<p>Best regards,</p>
|
|
|
|
<p>{{ \App\Models\Setting::getSettings()->site_name }}</p>
|
|
@stop
|