@extends('layout.front.master') @section('title', config('site.contact.page_title', __('Contacto')) . ' | ' . config('site.name')) @section('description', config('site.contact.page_subtitle', config('site.description', '')) . ' ' . config('site.contact.phone')) @section('keywords', config('site.seo.keywords') . ', contacto, presupuesto, consulta') {{-- Open Graph Meta Tags --}} @section('og_title', config('site.contact.page_title', __('Contacto')) . ' | ' . config('site.name')) @section('og_description', config('site.contact.page_subtitle', config('site.description', '')) . ' ' . config('site.contact.phone')) @section('og_image', brand_og_image()) @section('og_type', 'website') @section('og_url', url()->current()) {{-- Twitter Card Meta Tags --}} @section('twitter_title', config('site.contact.page_title', __('Contacto')) . ' | ' . config('site.name')) @section('twitter_description', config('site.contact.page_subtitle', config('site.description', ''))) @section('twitter_image', brand_twitter_image()) @section('content')
{{-- Page Header --}} @include('layout.front.partials.page-header-construction', [ 'pageTitle' => config('site.contact.page_title', __('Contacto')), 'pageBreadcrumb' => [ ['label' => __('Inicio'), 'url' => front_homepage_url()], ['label' => config('site.contact.page_title', __('Contacto')), 'url' => null], ], 'backgroundImage' => asset('cd-project/img/demos/construction/backgrounds/background-2.jpg'), ])
{{-- Contact Info Row --}}

{{ __('VISITANOS') }}

{{ config('site.contact.address', 'Av. Corrientes 1000, CABA, Argentina') }}
{{-- Form + Map Row --}}
{{-- Contact Form --}}

{{ __('Envianos un mensaje') }}

{{ config('site.contact.form_subtitle', __('Escribinos o llamanos para descubrir cómo podemos acompañar tu próximo proyecto.')) }}

@csrf @if(session('success'))
{{ __('Success!') }} {{ session('success') }}
@endif @if(session('error'))
{{ __('Error!') }} {{ session('error') }}
@endif
{{ __('Listo!') }} {{ __('Tu mensaje fue enviado.') }}
{{ __('Error!') }} {{ __('Hubo un error al enviar tu mensaje.') }}
{{-- Map / Sede --}}

{{ config('site.contact.headquarters_title', __('Sede principal')) }}

{{ config('site.contact.headquarters_subtitle', __('Te esperamos para conocer tu proyecto y proponer la mejor solución constructiva.')) }}

@if(config('site.contact.latitude') && config('site.contact.longitude'))
@else

{{ config('site.name') }}

{{ config('site.contact.address', '') }}

@endif
{{-- Decorative Element --}}
@if(config('site.contact.latitude') && config('site.contact.longitude')) @push('scripts') @endpush @endif @endsection