18 lines
696 B
PHP
18 lines
696 B
PHP
@extends('emails.layout')
|
|||
|
|
|
||
|
|
@section('content')
|
||
|
|
<p style="margin: 0 0 24px 0;">Use the code below to confirm this address as your account's new email.</p>
|
||
|
|
|
||
|
|
<table role="presentation" cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0; background-color: #f7f6f5; border-radius: 8px;">
|
||
|
|
<tr>
|
||
|
|
<td style="padding: 16px 20px; text-align: center; font-size: 28px; font-weight: bold; letter-spacing: 0.25rem;">
|
||
|
|
{{ $code }}
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
|
||
|
|
<p style="margin: 0 0 16px 0;">This code expires in 10 minutes.</p>
|
||
|
|
|
||
|
|
<p style="margin: 0;">If you didn't request this change, you can ignore this email — nothing will change.</p>
|
||
|
|
@endsection
|