@include('layout.front.partials.page-header-insurance', [ 'pageTitle' => __('Contact'), 'pageBreadcrumb' => [ ['label' => __('Home'), 'url' => front_homepage_url()], ['label' => __('Contact'), 'url' => null], ], ]) {{-- Contact Form and Locations Section --}}
@csrf @if(session('success'))
{{ __('Success!') }} {{ session('success') }}
@endif @if(session('error'))
{{ __('Error!') }} {{ session('error') }}
@endif @if($errors->any())
{{ __('Error!') }}
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ config('site.contact.locations_title_1', __('Our')) }} {{ config('site.contact.locations_title_2', __('Locations')) }}

{{ config('site.contact.locations_description', __('Donec velit magna, consectetur at suscipit eu, dapibus vel odio. Mauris ac nulla at ligula interdum ullamcorper. Nunc mattis eros nec eros dictum, nec molestie metus auctor.')) }}

{{-- Office 1 --}} @if(config('site.contact.address'))

{{ config('site.contact.address', 'Av. Principal 1234, Buenos Aires') }}

@else

{{ config('site.contact.office1_address', 'Av. Principal 1234, Buenos Aires') }}

@endif {{-- Office 2 --}} @if(config('site.contact.office2_address'))

{{ config('site.contact.office2_address') }}

@else {{-- Default second office --}}

{{ config('site.contact.office2_address', 'Calle Secundaria 567, Córdoba') }}

@endif
@if(config('site.contact.latitude'))
@endif
{{-- CTA Section --}}

{{ config('site.contact.cta_label', __('LOOKING FOR AFFORDABLE INSURANCE?')) }}

{{ config('site.contact.cta_title', __('Get Insurance Online and Save Up To 20%!')) }}

{{ config('site.contact.cta_subtitle', __('Surprisingly great rates, get started right now.')) }}