File: D:/HostingSpaces/SBogers10/boldt.komma.pro/resources/views/emails/contact.blade.php
@extends('emails.master')
@section('title')
@lang('site/emails.contact.subject')
@endsection
@section('content')
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
{{-- Content --}}
<p>Hi Rentman,</p>
<p>A request has been made through the contact form on your website:</p>
<br/>
{{-- Request information --}}
@foreach($request as $key => $value)
<p><strong>@lang('site/form.' . $key.'.label')</strong><br/>
{!! $value !!}
</p>
@endforeach
<br/>
<br/>
@if(isset($request['email']))
{{-- Button --}}
<table border="0" cellpadding="0" cellspacing="0" class="btn btn-primary">
<tbody>
<tr>
<td align="left">
<table border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td><a href="mailto:{{$request['email']}}" target="_blank">Reply on mail</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
@endif
<p> </p>
<p>
With kind regards,<br/>
Team Komma
</p>
</td>
</tr>
</table>
@endsection