File: D:/HostingSpaces/SBogers10/stafa.komma.pro/resources/views/emails/form1.blade.php
@extends('emails.master')
@section('title')
@lang('site/email.form1.subject',[],'nl')
@endsection
@section('content')
<h1>{{__('site/email.form1.subject', [], 'nl')}}</h1>
<p>Er is zojuist een nieuw formulier 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