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/EUmans/umansradepo.be/app/storage/views/25c201e431279703ff5c0620807ebd1a
<div class="form-contact">
        <h1><?php echo $page->content->contact_intro->translation->name; ?></h1>

        <p><?php echo $page->content->contact_intro->translation->description; ?></p>

            <?php echo 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 <?php echo ($errors->has('first_name')? 'active' :''); ?>"><?php echo $errors->first('first_name'); ?></span>
                    <?php echo Form::label('first_name',trans('translations.first_name')); ?>

                    <?php echo Form::text('first_name', Input::old('first_name'), ['id' => 'first_name']); ?>

                </div>
                <div class="last_name">
                    <span class="error <?php echo ($errors->has('last_name')? 'active' :''); ?>"><?php echo $errors->first('last_name'); ?></span>
                    <?php echo Form::label('last_name',trans('translations.last_name')); ?>

                    <?php echo Form::text('last_name', Input::old('last_name'), ['id' => 'last_name']); ?>

                </div>
            </div>

            <div class="phone form-element">
                <span class="error <?php echo ($errors->has('phone')? 'active' :''); ?>"><?php echo $errors->first('phone'); ?></span>
                <?php echo Form::label('phone',trans('translations.phone')); ?>

                <?php echo Form::text('phone', Input::old('phone'), ['id' => 'phone']); ?>


            </div>


            <div class="email form-element">
                <span class="error <?php echo ($errors->has('email')? 'active' :''); ?>"><?php echo $errors->first('email'); ?></span>
                <?php echo Form::label('email',trans('translations.email')); ?>

                <?php echo Form::email('email', Input::old('email'), ['id' => 'email']); ?>

            </div>


            <div class="extra_message form-element text-area">
                <span class="error <?php echo ($errors->has('formMessage')? 'active' :''); ?>"><?php echo $errors->first('formMessage'); ?></span>
                <?php echo Form::label('formMessage',trans('translations.extraMessage')); ?>

                <?php echo Form::textarea('formMessage', Input::old('formMessage') ,['id'=>'formMessage', 'rows'=>'6', 'data-autoresize'=>'']); ?>

            </div>
            <div class="submit-button">
                <?php echo \Illuminate\Support\Facades\Lang::get('offer.contact-submit'); ?><span></span>
                <?php echo Form::submit(trans('translations.send')); ?>

            </div>


            <?php echo Form::close(); ?>


        <div class="thanks inactive">
            <h2><?php echo \Illuminate\Support\Facades\Lang::get('mail.thanks'); ?></h2>
            <p>
                <?php echo \Illuminate\Support\Facades\Lang::get('mail.contact.thanksMessage'); ?>
            </p>
        </div>
</div>