File: D:/HostingSpaces/stafa/stafa.nl/resources/views/emails/contact.blade.php
@extends('emails.master')
@section('title')
@lang('site/email.contact.subject',[],'nl')
@endsection
@section('content')
<h1>{{__('site/email.contact.subject',[],'nl')}}</h1>
<p>Er is zojuist een nieuw contactverzoek binnengekomen:</p>
<br/>
<p><strong>Taal</strong><br/>
{{ app()->getLocale() }}
</p>
{{-- Request information --}}
@foreach($request as $key => $value)
<p><strong>@lang('site/form.' . $key.'.label',[],'nl')</strong><br/>
{!! $value !!}
</p>
@endforeach
<br/>
@if(isset($request['email']))
@include('emails.components.button', ['buttonLink' => 'mailto:'. $request['email'], 'buttonText' => 'Mail klant' ])
@endif
@endsection
@section('header')
@include('emails.components.headerBar')
@endsection
@section('layout')
@include('emails.components.body')
@endsection