File: D:/HostingSpaces/SBogers10/wingssprayer.komma.pro/resources/views/emails/contact.blade.php
@extends('emails.master')
@section('title')
@lang('site/email.contact.subject')
@endsection
@section('content')
<p>Hoi {{ config('site.company.name') }},</p>
<p>Er is zojuist een nieuw contactverzoek binnengekomen:</p>
<br/>
{{-- <p>--}}
{{-- <strong>Onderwerp:</strong><br/>--}}
{{-- {{ $subjectMessage }}--}}
{{-- </p>--}}
{{-- <br/>--}}
{{-- Request information --}}
@foreach($request as $key => $value)
@continue(empty($value))
<p><strong>@lang('site/form.' . $key.'.label')</strong><br/>
{!! $value !!}
</p>
@endforeach
<br/>
<br/>
@if(isset($request['email']))
@include('emails.components.button', ['buttonLink' => 'mailto:'. $request['email'], 'buttonText' => 'Mail klant' ])
@endif
<p> </p>
<p>
Met vriendelijke groet,<br/>
Team Komma
</p>
@endsection
@section('layout')
@include('emails.components.headerBar', ['headerBarTitle' => __('site/email.contact.subject')])
@include('emails.components.body')
@include('emails.components.footer', ['footerText' => '© ' . config('site.company.name')])
@endsection