2015-12-17 19:03:32 +01:00
|
|
|
@extends('emails.master_user')
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2015-12-17 19:03:32 +01:00
|
|
|
@section('markup')
|
|
|
|
@if (!$invitationMessage)
|
|
|
|
@include('emails.confirm_action', ['user' => $user])
|
|
|
|
@endif
|
|
|
|
@stop
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2015-12-17 19:03:32 +01:00
|
|
|
@section('body')
|
2016-01-12 07:57:19 +01:00
|
|
|
<h2>{{ trans('texts.confirmation_header') }}</h2>
|
2015-12-17 19:03:32 +01:00
|
|
|
<div>
|
|
|
|
{{ $invitationMessage . trans('texts.button_confirmation_message') }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<center>
|
|
|
|
@include('partials.email_button', [
|
|
|
|
'link' => URL::to("user/confirm/{$user->confirmation_code}"),
|
|
|
|
'field' => 'confirm',
|
|
|
|
'color' => '#36c157',
|
|
|
|
])
|
|
|
|
</center>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
{{ trans('texts.email_signature') }}<br/>
|
|
|
|
{{ trans('texts.email_from') }}
|
|
|
|
</div>
|
|
|
|
@stop
|