9 lines
363 B
PHP
9 lines
363 B
PHP
|
@extends('themes.base.email_layout')
|
||
|
|
||
|
@section('title', $subject)
|
||
|
@section('content')
|
||
|
<p>Hi {{ Auth::user()->name }},</p>
|
||
|
<p>This e-mail confirms your e-mail settings are correct.</p>
|
||
|
<p>You can now press "Save Settings" on the Settings screen to save these settings.</p>
|
||
|
<p>Regards,<br/>{{ UserConfig::get('app_name') }}</p>
|
||
|
@endsection
|