File: D:/HostingSpaces/fire-tech/fire-tech.nl/resources/views/site/pages/contact.blade.php
@extends('site.master')
@section('title', $page->translation->meta_title)
@section('meta_description', $page->translation->meta_description)
@section('content')
<div class="contact-content">
<div class="grid-row">
<div class="contact-info grid-col">
<h1>{{$page->translation->name}}</h1>
@include('site.partials.dynamic.dynamicBlocks', [ 'dynamicContent' => $page->translation->description ])
<div class="adresses-holder">
<p>
<strong>Postadres</strong><br/>
{{ \Config::get('site.company.postal.address') }}<br/>
{{ \Config::get('site.company.postal.zip') }} {{ \Config::get('site.company.postal.city') }}<br/>
</p>
<p>
<strong>Bezoekadres</strong><br/>
{{ \Config::get('site.company.visit.address') }}<br/>
{{ \Config::get('site.company.visit.zip') }} {{ \Config::get('site.company.visit.city') }}<br/>
</p>
</div>
<p>
<a href="mailto:{{ \Config::get('site.company.email') }}">{{ \Config::get('site.company.email') }}</a><br/>
<a href="tel:{{ \Config::get('site.company.phone.call') }}">{{ \Config::get('site.company.phone.display') }}</a><br/>
@lang('company.chamber_of_commerce') {{ \Config::get('site.company.KVK') }}<br/>
@lang('company.vat_number') {{ \Config::get('site.company.BTW') }}<br/>
</p>
</div>
<div class="contact-form">
<h2>@lang('site/contact.contactForm')</h2>
{{-- Form --}}
@include('site.forms.contact')
</div>
</div>
</div>
{{-- Google Maps - Simple setup through mapsHandler --}}
<div id="map"
@if(\Config::has('site.company.googleMaps.lat') && \Config::get('site.company.googleMaps.lat') !== '') data-google-lat="{{\Config::get('site.company.googleMaps.lat')}}"
@endif
@if(\Config::has('site.company.googleMaps.lng') && \Config::get('site.company.googleMaps.lng') !== '') data-google-lng="{{\Config::get('site.company.googleMaps.lng')}}" @endif
></div>
@include('site.partials.blocks.ctaRow', [
'ctaTrigger1' => (object)[
'title' => trans('site/global.ctaRow.title'),
'subTitle' => trans('site/global.ctaRow.subTitle'),
'button' => (object)[
'link' => "/".$links->contact->route,
'text' => trans('site/home.contactUs'),
],
],
'ctaPerson' => (object)[
'image' => '/img/contact-person.jpg',
'name' => 'Thijs Neeskens',
'text' => trans('site/global.ctaRow.phoneTitle'),
'button' => (object)[
'link' => 'tel:' . \Config::get('site.company.phone.call'),
'text' => \Config::get('site.company.phone.display')
]
],
])
@endsection