@props(['title', 'actionUrl'])
{{-- Header --}} @if (!empty($greeting))

{{ $greeting }}

@else

@lang('Hello!')

@endif {{-- Content --}}
@foreach ($introLines as $line)

{{ $line }}

@endforeach
{{-- Action Button --}} @isset($actionText)
{{ $actionText }}
@endisset {{-- Outro Lines --}}
@foreach ($outroLines as $line)

{{ $line }}

@endforeach
{{-- Salutation --}}

@if (!empty($salutation)) {{ $salutation }} @else @lang('Regards'),
{{ config('app.name') }} @endif