@extends('layouts.default') @push('title', get_phrase('Contact us')) @push('meta')@endpush @push('css')@endpush @section('content')

{{ get_phrase('Contact Us') }}

{{ get_phrase("We're always here to help you.") }}

@php $contact_info = get_frontend_settings('contact_info'); if ($contact_info) { $contact_info = json_decode($contact_info, true); } else { $contact_info = ['email' => '', 'phone' => '', 'address' => '', 'office_hours' => '', 'location' => '']; } @endphp

{{ get_phrase('Our Address') }}

{{ get_phrase('Our location') }}

{{ $contact_info['address'] }}

{{ get_phrase('Contact Info') }}

{{ get_phrase('Open a chat or give us call at') }}

{{ $contact_info['phone'] }}

{{ get_phrase('Contact Email') }}

{{ get_phrase('Send your message') }}

{{ $contact_info['email'] }}

{{ get_phrase('Send Message') }}

@csrf
@endsection