@extends('layouts.app') @section('title', 'Contact Us | ' . ($organization->name ?? config('app.name'))) @section('content')

Contact {{ optional($organization)->name }}

We're here to assist you. Whether it's inquiries, consultations, or support, don't hesitate to reach out.

Get in Touch with Us

@if (session('success'))
{{ session('success') }}
@endif
@csrf

Stay Connected

Follow us on social media to get the latest updates, announcements, and study abroad information.

Connect With Us

{{ optional($displayedContact)->opening_hours }}

@if ( $displayedContact && ($displayedContact->office_phone || $displayedContact->mobile_phone || $displayedContact->whatsapp_number))
@if ($displayedContact->office_phone) {{ $displayedContact->office_phone }} (Office) @endif @if ($displayedContact->mobile_phone) {{ $displayedContact->mobile_phone }} (Phone) @endif @if ($displayedContact->whatsapp_number) {{ $displayedContact->whatsapp_number }} (WhatsApp) @endif
@else

Contact info coming soon

@endif

Email Support

Email us & we will get back to you within 24 hours

{{ $displayedContact->email ?? 'info@englishcounciledu.com' }}

{{ $displayedContact->name ?? 'Main Office' }}

Visit our office during available hours

{!! nl2br(e($displayedContact->address ?? 'Please configure company address in dashboard.')) !!}
@if ($displayedContact && $displayedContact->embed_url) @else

Map is not configured. Please paste any Google Maps link in the admin dashboard.

@endif

Frequently Asked Questions

Answers to Common Inquiries About Our Services

@php $fallbackFaqs = [ [ 'q' => 'What services do you provide?', 'a' => 'We offer study abroad counseling, university admission assistance, visa guidance, and complete support throughout the application process.', ], [ 'q' => 'Which countries do you provide study options for?', 'a' => 'We assist students in applying to various study destinations including Australia, the UK, Canada, New Zealand, the USA, and other countries.', ], [ 'q' => 'Do you provide personalized counseling?', 'a' => 'Yes, we provide one-on-one counseling tailored to each student’s academic background, interests, and career goals.', ], [ 'q' => 'Do you help with visa processing?', 'a' => 'Yes, we guide students through documentation, application submission, and interview preparation to ensure a smooth visa process.', ], [ 'q' => 'How long does the application process take?', 'a' => 'The timeline depends on the chosen country, institution, and intake, but we guide students clearly at every step.', ], [ 'q' => 'Is your guidance genuine and transparent?', 'a' => 'Absolutely. We are committed to providing honest, accurate, and up-to-date information to protect students from misguidance.', ], ]; $displayFaqs = $faqs->count() > 0 ? $faqs->map(fn($f) => ['q' => $f->question, 'a' => $f->answer]) : $fallbackFaqs; @endphp @foreach ($displayFaqs as $index => $faq)
@endforeach
@endsection