File: D:/HostingSpaces/SBogers10/csb.komma.pro/resources/views/templates/contact.blade.php
@extends('master', [ 'headerIsLight' => true ])
@section('title', $page->translation->meta_title)
@section('meta_description', $page->translation->meta_description)
@section('content')
<div class="u-reset-header-offset l-contain o-block">
<div class="o-contact">
<div class="o-contact__info">
<div class="o-contact__business">
<h5 class="o-contact__heading">{{ config('site.company.name') }}</h5>
<p>
{{ config('site.company.address') }}<br>
{{ config('site.company.postal_code') }} {{ config('site.company.city') }}
</p>
<p class="o-contact__actions">
<a class="o-contact__link" href="tel:{{ config('site.company.phone.call')}}">
<span class="o-contact__icon" data-icon="phone">@include('components.icons.phone')</span>
<span class="" title="@lang('site/global.phoneNumber')" >
{{ config('site.company.phone.display')}}
</span>
</a>
<a class="o-contact__link" href="mailto:{{ config('site.company.email') }}">
<span class="o-contact__icon" data-icon="mail">@include('components.icons.contact')</span>
<span class="" title="{{__('site/global.emailAddress')}}">
{{ config('site.company.email') }}
</span>
</a>
</p>
<dl class="o-contact__commercial">
<dt>@lang('company.chamber_of_commerce'):</dt><dd>{{ config('site.company.chamber_of_commerce') }}</dd>
<dt>@lang('company.vat_number'):</dt><dd>{{ config('site.company.vat') }}</dd>
</dl>
<div class="o-contact__persons">
@include('components.contactPerson', [
'imagePath' => '/img/contactperson-patrick-van-meijl.jpg',
'name' => 'Patrick van Meijl',
'function' => 'Eigenaar',
'phoneNumber' => '+31610933957',
'phoneNumberDisplay' => '+31 (0)6 10 93 39 57',
'mailAddress' => 'p.vanmeijl@csbinstallatietechniek.nl',
])
@include('components.contactPerson', [
'imagePath' => '/img/contactperson-peter-stevens.jpg',
'name' => 'Peter Stevens',
'function' => 'Projectleider',
'phoneNumber' => '+31612981682',
'phoneNumberDisplay' => '+31 (0)6 12 98 16 82',
'mailAddress' => 'p.stevens@csbinstallatietechniek.nl',
])
@include('components.contactPerson', [
'imagePath' => '/img/contactperson-jan-van-der-putten.jpg',
'name' => 'Jan van der Putten',
'function' => 'Projectleider',
'phoneNumber' => '+31612981680',
'phoneNumberDisplay' => '+31 (0)6 12 98 16 80',
'mailAddress' => 'j.vd.putten@csbinstallatietechniek.nl',
])
@include('components.contactPerson', [
'imagePath' => '/img/contactperson-roy-boogers.jpg',
'name' => 'Roy Boogers',
'function' => 'Senior werkvoorbereider',
'phoneNumber' => '+31495595959',
'phoneNumberDisplay' => '+31 (0)495 59 59 59',
'mailAddress' => 'r.boogers@csbinstallatietechniek.nl',
])
</div>
</div>
</div>
<div class="o-contact__form">
@include('organisms.forms.contact')
</div>
</div>
</div>
@endsection