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/mailPop.blade.php
<div class="pop-up-background">
    <div class="background"></div>
    <div class="pop-up">
        <header>
            <div class="logo"></div>
        </header>

        <div class="thanks">
            <h4>@lang('translations.thanksTitle')</h4>
            <p>@lang('translations.thanksText')</p>
            <div class="close"><p>@lang('translations.close')</p></div>
        </div>
        {{ Form::open(['method' => 'post', 'url' => '/mailInformation', 'id'=>'popUpMail']) }}
        <section class="input">
            <h5>@lang('translations.howCanWeHelp')</h5>

            {{--<h2 class="appoint">@lang('translations.planAppointment')</h2>--}}
            <div class="checkBox">

                <?php
                    $box =' ';
                    if(isset($property->decoded_info->BoxNr) && $property->decoded_info->BoxNr != '') $box = ' Bus '.$property->decoded_info->BoxNr;
                ?>

                {{ Form::checkbox('planAppointment', ($property->decoded_info->Street.' '.$property->decoded_info->HouseNumber.$box.' | '.$property->postal_code.' '.$property->city) ,false, ['id'=>'plan_appointment']) }}
                {{ Form::label('plan_appointment', trans('translations.planAppointment')) }}<br>

                {{ Form::checkbox('moreInfoProp', ($property->decoded_info->Street.' '.$property->decoded_info->HouseNumber.$box.' | '.$property->postal_code.' '.$property->city) ,true, ['id'=>'more_info_prop']) }}
                {{ Form::label('more_info_prop', trans('translations.moreInfoProp')) }}
            </div>
        </section>
        <hr>
        <section class="form">
            <h5>@lang('translations.yourInfo')</h5>

            <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.extraMessage')) }}
                    {{ Form::textarea('extra_message', null ,['id'=>'extra_message', 'rows'=>'6', 'data-autoresize'=>'', 'placeholder' => trans('translations.extraMessage')]) }}
                </div>
                <div class="hide">
                    {{ Form::submit('Zoeken') }}
                </div>
            </div>
        </section>
        {{ Form::close() }}

        <div id="sendButton">
            <p>@lang('translations.sendButton')</p>
        </div>

    </div>
</div>