@extends('emails.master')
@section('title')
Contact request
@endsection
@section('message')
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
{{-- Request information --}}
@foreach($request as $key => $value)
<p><strong>{{ __('site/form.' . $key.'.label',[] , 'en') }}</strong><br/>
{!! $value !!}
</p>
@endforeach
</td>
</tr>
</table>
@endsection