@extends('layouts.web') @section('title', webText('contact.pageTitle')) @section('class', 'page--contact') @section('content')

{{ webText('contact.pageTitle') }}

@include('layouts.includes.nav')

{{ webText('contact.hq.title') }}

{{ webText('contact.hq.subtitle') }}:

{!! webText('contact.hq.address') !!}

{!! webText('contact.hq.companyData') !!}

{{ webText('contact.hq.subtitle.contact') }}

@foreach(\App\ContactPerson::whereSection('praha')->orderBy('order')->get() as $contactPerson) @include('web.includes.contactPersonBox', ['contactPerson' => $contactPerson]) @endforeach

{{ webText('contact.service.title') }}

{{ webText('contact.service.text') }}

{{ webText('contact.novyJicin.title') }}

{{ webText('contact.novyJicin.subtitle') }}:

{!! webText('contact.novyJicin.address') !!}

{!! webText('contact.novyJicin.telFax') !!}

@foreach(\App\ContactPerson::whereSection('novyJicin')->orderBy('order')->get() as $contactPerson) @include('web.includes.contactPersonBox', ['contactPerson' => $contactPerson]) @endforeach

{{ webText('contact.novyJicin.mapTitle') }}

@include('web.includes.logos') @endsection