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/SBogers68/ouddorp-duin.nl/app/views/forms/footerContact.blade.php
<div class="contact-form">
    <h3>@lang('translations.contactForm')</h3>

    {{ Form::open(['url' => URL::to(route('contact.process'), [], true), 'id' => 'contactForm', 'class' => 'form']) }}

    <div class="name form-element multiple-elements">
        <div class="first_name">
            <span class="error {{($errors->has('first_name')? 'active' :'')}}">{{$errors->first('first_name')}}</span>
            {{Form::label('first_name',trans('translations.first_name'))}}
            {{ Form::text('first_name', Input::old('first_name'), ['id' => 'first_name', 'placeholder'=> trans('translations.placeholder_first_name')]) }}
        </div>
        <div class="last_name">
            <span class="error {{($errors->has('last_name')? 'active' :'')}}">{{$errors->first('last_name')}}</span>
            {{Form::label('last_name',trans('translations.last_name'))}}
            {{ Form::text('last_name', Input::old('last_name'), ['id' => 'last_name', 'placeholder'=> trans('translations.placeholder_last_name')]) }}
        </div>
    </div>

    <div class="phone form-element">
        <span class="error {{($errors->has('phone')? 'active' :'')}}">{{$errors->first('phone')}}</span>
        {{Form::label('phone',trans('translations.phone'))}}
        {{ Form::text('phone', Input::old('phone'), ['id' => 'phone', 'placeholder'=> trans('translations.placeholder_phone')]) }}

    </div>

    <div class="email form-element">
        <span class="error {{($errors->has('email')? 'active' :'')}}">{{$errors->first('email')}}</span>
        {{Form::label('email',trans('translations.email'))}}
        {{ Form::email('email', Input::old('email'), ['id' => 'email', 'placeholder'=> trans('translations.placeholder_email')]) }}
    </div>

    <div class="extra_message form-element text-area">
        <span class="error {{($errors->has('formMessage')? 'active' :'')}}">{{$errors->first('formMessage')}}</span>
        {{Form::label('formMessage',trans('translations.extraMessage'))}}
        {{ Form::textarea('formMessage', Input::old('formMessage') ,['id'=>'formMessage', 'rows'=>'6', 'data-autoresize'=>'', 'placeholder' => trans('translations.placeholder_extraMessage')]) }}
    </div>

    <div class="form-element checkbox">
        <span class="error {{($errors->has('checkLegal')? 'active' :'')}}">{{$errors->first('checkLegal')}}</span>
        <div class="wrapper">
            {{ Form::checkbox('checkLegal', true , false, ['id' => 'checkLegal']) }}
            <p><a target="_blank" href="/{{$links->legal->route}}">@lang('translations.checkLegal')</a></p>
        </div>
    </div>

    <div class="submit">
        <p>@lang('translations.send') <span></span></p>
        {{ Form::submit(trans('translations.send')) }}
    </div>


    {{ Form::close() }}

    <div class="thanks inactive">
        <h2>@lang('mail.thanks')</h2>
        <p>
            @lang('mail.contact.thanksMessage')
        </p>
    </div>
</div>