File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/views/emails/contact/contact.blade.php
<?php
$pAsCell = 'font-size: 12px; font-family: Arial, sans-serif; line-height: 16px; padding-bottom: 12px;';
$h2AsCell = 'font-size: 20px; font-family: Arial, sans-serif; line-height: 24px; padding-bottom: 20px; font-weight:bold; color: #00b0ea;';
$vAT = 'vertical-align: top';
?>
@extends('emails.layouts.tops')
@section('title')
{{ \Lang::get('emails/customer/contact.subject',['website'=>$website]) }}
@endsection
@section('content')
{{ \Lang::get('emails/customer/contact.content',['website'=>$website]) }}
<table>
<tr>
</tr>
<tr>
<td>
{{\lang::get('emails/customer/contact.name')}}
</td>
<td>
{{$name }}
</td>
</tr>
<tr>
<td>
{{\lang::get('emails/customer/contact.email')}}
</td>
<td>
{{$email }}
</td>
</tr>
<tr>
<td>
{{\lang::get('emails/customer/contact.phone')}}
</td>
<td>
{{$phone }}
</td>
</tr>
<tr>
<td style="{{$vAT }}">
{{\lang::get('emails/customer/contact.message')}}
</td>
<td>
{{$message_text }}
</td>
</tr>
</table>
@endsection