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/immoginis.komma.pro/app/views/layouts/partials/contactForm.blade.php
<header>
    <div class="logo"></div>
</header>
<div class="thanks">
    <h4>@lang('translations.thanksTitle')</h4>
    <p>@lang('translations.thanksText')</p>
</div>


{{ Form::open(['method' => 'post', 'url' => '/contact/submit', 'id'=>'contactForm']) }}

<section class="form">
    <h2>@lang('translations.contactForm')</h2>
    <hr/>
    <div class="contact-info">
        <div class="input-rows">
            {{ Form::label('name', trans('translations.name')) }}
            {{ Form::text('name', null ,['id'=>'name', 'placeholder' => trans('translations.name')]) }}
        </div>
        <div class="input-rows">
            {{ Form::label('sur_name', trans('translations.surName')) }}
            {{ Form::text('sur_name', null ,['id'=>'sur_name', 'placeholder' => trans('translations.surName')]) }}
        </div>
        <div class="input-rows">
            {{ Form::label('email', trans('translations.email')) }}
            {{ Form::email('email', null ,['id'=>'email', 'placeholder' => trans('translations.email')]) }}
        </div>
        <div class="input-rows">
            {{ Form::label('phone', trans('translations.phone')) }}
            {{ Form::text('phone', null ,['id'=>'phone', 'placeholder' => trans('translations.phone')]) }}
        </div>
        <div class="input-rows text-area-row">
            {{ Form::label('extra_message', trans('translations.contactMessage')) }}
            {{ Form::textarea('extra_message', null ,['id'=>'extra_message', 'rows'=>'6', 'data-autoresize'=>'', 'placeholder' => trans('translations.contactMessage')]) }}
        </div>
        <div class="hide">
            {{ Form::submit('Zoeken') }}
        </div>
        <div id="sendButton">
            <p>@lang('translations.sendButton')</p>
        </div>
    </div>
</section>
{{ Form::close() }}