@component('mail::message')
{{-- Greeting --}}
@if (! empty($greeting))
# {{ $greeting }}
@else
@if ($level === 'error')
# @lang('messages.register.Whoops')
@else
# @lang('messages.register.hello')
@endif
@endif
{{-- Intro Lines --}}
@foreach ($introLines as $line)
{{ $line }}
@endforeach
{{-- Action Button --}}
@isset($actionText)
Warning: Undefined variable $level in /home/demohost/hospital.demohost.in/resources/views/vendor/notifications/email.blade.php on line 22
Warning: Undefined variable $level in /home/demohost/hospital.demohost.in/resources/views/vendor/notifications/email.blade.php on line 23
@component('mail::button', ['url' => $actionUrl, 'color' => $color])
{{$actionText}}
@endcomponent
@endisset
{{-- Outro Lines --}}
@foreach ($outroLines as $line)
{{ $line }}
@endforeach
{{-- Salutation --}}
@if (! empty($salutation))
{{ $salutation }}
@else
@lang('messages.register.regards')
{{ getAppName() }}
@endif
{{-- Subcopy --}}
@isset($actionText)
@slot('subcopy')
@lang('messages.register.if_having_trouble_text',
[
'actionText' => $actionText,
'actionURL' => $actionUrl,
]
)
@endslot
@endisset
@endcomponent