File: D:/HostingSpaces/SBogers10/zelfverkopen.komma.pro/resources/views/site/pages/buyHouseForm.blade.php
@extends('site.base')
@section('title', $page->translation->meta_title)
@section('meta_description', $page->translation->meta_description)
@section('base-content')
@include('site.partials.headerClean')
<section class="full-text-row @if( !( !isset($send) || $send == false )) no-padding-bottom @endif">
<div class="grid-row">
<div class="grid-col kms-content">
<div class="placeholder">
@if( ( !isset($send) || $send == false ) && !isset($payment))
<h1>{{$page->translation->fullTextRow->typeName}}</h1>
{!! $page->translation->fullTextRow->description !!}
@else
@if(isset($payment))
@if($payment)
<h1>@lang('site/buyHouse.payment.success.title')</h1>
<p>@lang('site/buyHouse.payment.success.text')</p>
@else
<h1>@lang('site/buyHouse.payment.error.title')</h1>
<p>@lang('site/buyHouse.payment.error.text')</p>
@endif
@else
<h1>@lang('site/buyHouse.thanksTitle')</h1>
<p>@lang('site/buyHouse.thanksText')</p>
@endif
@endif
</div>
</div>
</div>
</section>
@if( ( !isset($send) || $send == false ) && !isset($payment))
<div class="grid-row form-row">
<div class="contact-person-model form-wrapper">
<div class="contact-person">
<figure>
<img alt="contact person" src="/img/contact_person_white.jpg"/>
</figure>
<p>
@lang('site/form.willHelpYou', ['name' => \Config::get('site.contact_person.name')])
</p>
</div>
<div class="model-content">
@include('site.forms.buyHouse')
</div>
</div>
</div>
@endif
@include('site.partials.footerClean')
@endsection