HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/boldt.komma.pro/resources/views/emails/contact.blade.php
@extends('emails.master')

@section('title')
    @lang('site/emails.contact.subject')
@endsection

@section('content')

    <table border="0" cellpadding="0" cellspacing="0">
        <tr>
            <td>

                {{-- Content --}}

                <p>Hi Rentman,</p>
                <p>A request has been made through the contact form on your website:</p>

                <br/>

                {{-- Request information --}}
                @foreach($request as $key => $value)
                    <p><strong>@lang('site/form.' . $key.'.label')</strong><br/>
                        {!! $value !!}
                    </p>
                @endforeach

                <br/>
                <br/>

                @if(isset($request['email']))
                    {{-- 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="mailto:{{$request['email']}}" target="_blank">Reply on mail</a>
                                        </td>
                                    </tr>
                                    </tbody>
                                </table>
                            </td>
                        </tr>
                        </tbody>
                    </table>
                @endif
                <p>&nbsp;</p>
                <p>
                    With kind regards,<br/>
                    Team Komma
                </p>

            </td>
        </tr>
    </table>

@endsection