@extends('frontend.layouts.master') @section('title', __('front.contact.page_title') . ' - Novalynk') @section('content')

{{ app()->isLocale('en') ? __('front.content.contact.title') : ($settings['contact_title'] ?? __('front.content.contact.title')) }}

{{ app()->isLocale('en') ? __('front.content.contact.subtitle') : ($settings['contact_subtitle'] ?? __('front.content.contact.subtitle')) }}

{{ __('front.contact.contact_information') }}

{{ __('front.contact.address') }}

{{ $settings['contact_address'] ?? 'Jakarta, Indonesia' }}


{{ __('front.contact.operating_hours') }}

{{ __('front.contact.weekday_hours') }}

{{ __('front.contact.saturday_hours') }}

{{ __('front.contact.send_message') }}

@if(session('success')) @endif
@csrf
@if(isset($settings['google_maps_embed']) && $settings['google_maps_embed'])
{!! $settings['google_maps_embed'] !!}
@endif @if(count($faqs) > 0)

{{ __('front.contact.faq_title') }}

{{ __('front.contact.faq_subtitle') }}

@foreach($faqs as $index => $faq)

{{ $faq->answer }}

@endforeach
@endif @endsection