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/SBogers101/cranendonckactief.nl/app/views/forms/contact.blade.php
<div class="contact-form">

    @if(!$page->send)

        <h2>{{KommaLang::get('contactForm')}}</h2>

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

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

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

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

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

        <div class="extra_message form-element text-area">
            {{Form::label('formMessage',trans('translations.extraMessage'))}}
            <span class="error-message {{($errors->has('formMessage')? 'active' :'')}}">{{$errors->first('formMessage')}}</span>
            {{ Form::textarea('formMessage', Input::old('formMessage') ,['id'=>'formMessage', 'rows'=>'6']) }}
        </div>
        <div class="submit">
            <p class="button">
                @lang('translations.send')
                <span class="arrow">@include('svg.arrow')</span>
            </p>
            {{ Form::submit(trans('translations.send')) }}
        </div>

        {{ Form::close() }}

    @else

        <h2>{{ KommaLang::get('thanksContactFormTitle') }}</h2>
        <p>{{ KommaLang::get('thanksContactFormText') }}</p>

    @endif

</div>