File: D:/HostingSpaces/SBogers10/douven.komma.pro/resources/views/site/emails/contact.blade.php
@extends('site.emails.master')
@section('title')
New request on website
@endsection
@section('content')
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
{{-- Content --}}
<p>Beste Komma-kanjer,</p>
<p>Er is een nieuw verzoek gedaan via je website:</p>
<br />
{{-- Request table --}}
<table border="0" cellpadding="0" cellspacing="0">
<tbody>
@foreach($request as $key => $value)
<tr>
<td>@lang('site/form.' . $key.'.label')</td>
<td>{!! $value !!}</td>
</tr>
@endforeach
</tbody>
</table>
<br />
<br />
{{-- 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="{{ Config::get('komma.company.url') }}" target="_blank">Naar de website</a> </td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</table>
@endsection