@extends('layouts.website') @section('title', 'Contact Us') @section('hero') @endsection @section('content') @if(session('success'))
{{ session('success') }}
@endif {{-- Page heading --}}

Get In Touch

We'd love to hear from you. Reach us through any of the channels below and we will get back to you as soon as possible.

{{-- SECTION 1: Contact info --}}
{{-- Phone --}}
@if($settings && $settings->contact_no)

{{ $settings->contact_no }}

@else

@endif
{{-- Email --}}
@if($settings && $settings->email)

{{ $settings->email }}

@else

@endif
{{-- Address --}}
@if($settings && $settings->address)

{{ $settings->address }}

@else

@endif
{{-- Page heading (Contact Form) --}}

Contact Us By Form

Fill in the form below and we will get back to you as soon as possible.

{{-- SECTION 2: Contact form --}}
@csrf
@error('name')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('subject')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('message')
{{ $message }}
@enderror
@endsection