@extends('layouts.app') @push('head') {{-- SiteManager 통합 보안 시스템 --}} @include('sitemanager::security.form-security', [ 'action' => 'contact_form', 'tokenField' => 'recaptcha_token', 'formId' => 'contact-form' ]) {!! resource('css/contact-us.css') !!} {!! resource('css/form.css') !!} {!! setResources(['select2', 'flatpickr']) !!} @endpush @section('content')
{{-- 동적 네비게이션 (메뉴 테이블 기반) --}} @include('partials.document-navigation') {{-- 페이지 컨텐츠 --}}

Contact us

We welcome your feedback and inquiries!
Please don't hesitate to reach out to us.
Office hours 8:00 am to 5:00 pm, Monday to Friday.
You can also contact us via email by completing the form below.
@csrf
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('country')
{{ $message }}
@enderror
@if($errors->has('phone_country') || $errors->has('phone'))
{{ $errors->first('phone_country') ?: $errors->first('phone') }}
@endif
@error('birth_date')
{{ $message }}
@enderror
@error('message')
{{ $message }}
@enderror
@include('partials.privacy-policy')
@error('privacy_agreement')
{{ $message }}
@enderror
{{-- reCAPTCHA --}} @if(config('services.recaptcha.site_key')) @if(config('services.recaptcha.version') === 'v3') {{-- reCAPTCHA v3 (invisible) --}} @else {{-- reCAPTCHA v2 (checkbox) --}}
Please complete the captcha verification.
@endif @endif {{-- Honeypot 필드들 (숨김) --}} {{-- 폼 토큰 (제출 시간 검증용) --}} {{-- 타임스탬프 (JavaScript로 업데이트) --}}
Whatsapp
{{-- 첫 번째 섹션: 한국 주소 - 데스크톱에서 좌우 배치 --}}
Address
4th floor, 16 Gangnam-daero 84-gil, Gangnam-gu, Seoul
TEL. +82 2 6956 0909
E-mail. info@edmkorean.com
Business. marketing@edmkorean.com
Bus
Shinbundang Gangnamstation stop
140, 400, 402, 420, 421, 440, 41, 452, 470, 542, 643, 741, 0411, 1550, 1570, 3030, 3100, 9202, 9400, 9800, 9404, 9408, 9409, 9711, 8008, 6009

Gangnam Station, Yeoksam Tax Office
146, 341, 360, 740, 8146
Subway
- Line 2 Gangnam Station, Exit 3,4
- Shinbundang Line Gangnam Station Exit 3
{{-- google map: 4th floor, 16 Gangnam-daero 84-gil, Gangnam-gu, Seoul, South Korea - edm Korean Global Campus --}}

Overseas Branch/Office

LONDON
+44 074 4280 4261
10 York Rd London SE1 7ND
10:00 AM to 5:00 PM (closed on Weekends and holidays)
{{-- google map: 10 York Rd London SE1 7ND - edm LONDON --}}
TAIWAN
+886 2 2711 3911
106 Taipei City, Da'an District, Section 4, Zhongxiao E Rd, 166號4樓
10:00 AM to 7:00 PM (closed on Weekends and holidays)
{{-- google map: 106 Taipei City, Da'an District, Section 4, Zhongxiao E Rd, 166號4樓- edm TAIWAN --}}
@endsection @push('scripts') {!! resource('js/contact-us.js') !!} @endpush