File: D:/HostingSpaces/SBogers10/beat-the-barn.komma.nl/resources/views/templates/quotation.blade.php
@extends('master', ['pullUpFooter'=> true])
@section('title', $page->translation->meta_title != '' ? $page->translation->meta_title : $page->translation->name .' | '. config('site.company_name'))
@section('meta_description', $page->translation->meta_description)
@section('content')
<div class="l-contain">
@include('components.breadcrumb')
</div>
<div class="l-block l-contain u-spacing-mt4">
<div class="t-form">
<div class="t-form__right">
<div class="s-text">
<h2>@lang('quotation.form_title')</h2>
<p>@lang('quotation.description')</p>
<ul class="s-checklist s-checklist--large">
@foreach(__('quotation.usp') as $item)
<li>{{$item}}</li>
@endforeach
</ul>
</div>
<div class="u-spacing-mt7">
@include('components.servicePoint', [
'servicePoint' => config('site.servicePoints.luc_nouwen'),
'servicePointHeading' => __('quotation.servicepoint_title'),
'servicePointDesc' => 'Bel me op <a href="tel:'.config('site.servicePoints.luc_nouwen.phone.call').'">'.config('site.servicePoints.luc_nouwen.phone.display').'</a>',
])
</div>
</div>
<div class="t-form__left">
@if(isset($send))
<h3 class="c-heading">@lang('contact.send.title')</h3>
<p>@lang('contact.send.description')</p>
@else
@include('organisms.forms.quotation', ['formTitle' => __('quotation.form_name')])
@endif
</div>
</div>
</div>
@endsection