27 lines
653 B
PHP
27 lines
653 B
PHP
@include('mail.layouts.styles')
|
|
@include('mail.layouts.footer')
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
@yield('styles')
|
|
</head>
|
|
<body>
|
|
<div class="wrapper">
|
|
<p class="header">
|
|
@if($recipient->firstAndMidName ?? null) Здравствуйте, {{$recipient->firstAndMidName}}!
|
|
@else Здравствуйте!
|
|
@endif
|
|
</p>
|
|
<div class="content">
|
|
@yield('content')
|
|
</div>
|
|
<p class="footer">
|
|
@yield('footer')
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|