2018-10-29 04:16:17 +01:00
|
|
|
@component('mail::layout')
|
|
|
|
|
|
|
|
{{-- Header --}}
|
|
|
|
@slot('header')
|
|
|
|
@component('mail::header', ['url' => config('app.url')])
|
|
|
|
Header Title
|
|
|
|
@endcomponent
|
|
|
|
@endslot
|
|
|
|
|
|
|
|
{{-- Body --}}
|
|
|
|
{{ $user }}
|
2019-09-26 15:15:25 +02:00
|
|
|
trans('texts.confirmation_message')
|
2018-10-29 04:16:17 +01:00
|
|
|
|
2019-04-18 07:01:40 +02:00
|
|
|
@component('mail::button', ['url' => url("/user/confirm/{$user->confirmation_code}")])
|
2019-09-26 15:15:25 +02:00
|
|
|
trans('texts.confirm')
|
2018-10-29 04:16:17 +01:00
|
|
|
@endcomponent
|
|
|
|
|
|
|
|
{{-- Subcopy --}}
|
|
|
|
@isset($subcopy)
|
|
|
|
@slot('subcopy')
|
|
|
|
@component('mail::subcopy')
|
|
|
|
{{ $subcopy }}
|
|
|
|
@endcomponent
|
|
|
|
@endslot
|
|
|
|
@endisset
|
|
|
|
|
|
|
|
|
|
|
|
{{-- Footer --}}
|
|
|
|
@slot('footer')
|
|
|
|
@component('mail::footer')
|
|
|
|
© {{ date('Y') }} {{ config('ninja.app_name') }}.
|
|
|
|
@endcomponent
|
|
|
|
@endslot
|
|
|
|
|
|
|
|
@endcomponent
|