@extends('welcome') @section('title', __('contactus.seo_title', ['company' => config('app.name')])) @section('meta_description', __('contactus.seo_description')) @section('content')
{{ __('contactus.info_text') }}
@if(!empty($addressLines)) {!! nl2br(e(implode("\n", $addressLines))) !!} @else {{ __('contactus.address_fallback') }} @endif
@if(!empty($phones)) @foreach($phones as $phone) @php $label = is_array($phone) ? ($phone['label'] ?? '') : ''; $value = is_array($phone) ? ($phone['value'] ?? '') : (string) $phone; $tel = preg_replace('/\s+/', '', $value); @endphp @if(!empty($value)) {{ $value }}@if(!empty($label)) {{ $label }}@endif @endif @endforeach @else {{ __('contactus.phone_fallback') }} @endif
@if(!empty($emails)) @foreach($emails as $email) @php $value = is_array($email) ? ($email['value'] ?? '') : (string) $email; @endphp @if(!empty($value)) {{ $value }} @endif @endforeach @else {{ __('contactus.email_fallback') }} @endif
{{ __('contactus.social_fallback') }}
@endif