File: D:/HostingSpaces/SBogers79/artofeinstein.be/app/views/emails/contactForm.blade.php
<h1>@lang('mail.contactFormTitle')</h1>
<p style="margin-bottom: 20px">@lang('mail.contactFormText')</p>
<p><strong style="width: 200px; margin-right: 20px;">@lang('mail.name'): </strong><br/>{{$name}}</p>
@if(isset($email) && $email != '')
<p><strong style="width: 200px; margin-right: 20px;">@lang('mail.email'): </strong><br/>{{$email}}</p>
@endif
@if(isset($phone) && $phone != '')
<p><strong style="width: 200px; margin-right: 20px;">@lang('mail.phone'): </strong><br/>{{$phone}}</p>
@endif
@if(isset($activity) && $activity != '')
<p><strong style="width: 200px; margin-right: 20px;">@lang('mail.activity'): </strong><br/>{{$activity}}</p>
@endif
@if(isset($date) && $date != '')
<p><strong style="width: 200px; margin-right: 20px;">@lang('mail.date'): </strong><br/>{{$date}}</p>
@endif
@if(isset($extra_message) && $extra_message != '')
<p><strong style="width: 200px; margin-right: 20px;">@lang('mail.message'): </strong><br/>{{$extra_message}}</p>
@endif