@extends('layouts.app') @section('title', 'Contact') @section('content') {{-- ═══ CONTACT BANNER ═══ --}}
{{-- Background image --}}
Contactez-nous
{{-- Decorative blobs --}}
{{-- Left: title --}}

Nous Contacter

Notre équipe est disponible pour répondre à toutes vos questions.

{{-- Right: contact info quick-access --}}
@foreach([ ['icon' => 'phone', 'label' => '+225 55 50 00 00 00', 'sub' => 'Appelez-nous', 'color' => 'text-green-300'], ['icon' => 'envelope', 'label' => 'contact@adamservice.dz','sub' => 'Écrivez-nous', 'color' => 'text-amber-300'], ['icon' => 'clock', 'label' => 'Lun – Sam 9h – 18h', 'sub' => "Horaires d'ouverture", 'color' => 'text-sky-300'], ] as $info)

{{ $info['label'] }}

{{ $info['sub'] }}

@endforeach
{{-- Contact Info --}}

Informations de contact

@foreach([ ['icon' => 'map-marker-alt', 'color' => 'blue', 'title' => 'Adresse', 'text' => "Abidjan, Côte d'ivoire"], ['icon' => 'phone', 'color' => 'green', 'title' => 'Téléphone', 'text' => '+225 55 50 00 00 00', 'link' => 'tel:+225 55 50 00 00 00'], ['icon' => 'envelope', 'color' => 'amber', 'title' => 'Email', 'text' => 'contact@adamservice.dz', 'link' => 'mailto:contact@adamservice.dz'], ['icon' => 'clock', 'color' => 'purple', 'title' => 'Horaires', 'text' => 'Lundi – Samedi : 9h00 – 18h00'], ] as $info)

{{ $info['title'] }}

@if(isset($info['link'])) {{ $info['text'] }} @else

{{ $info['text'] }}

@endif
@endforeach
{{-- Social --}}

Suivez-nous

{{-- Contact Form --}}

Envoyez-nous un message

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

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror
@error('subject')

{{ $message }}

@enderror
@error('message')

{{ $message }}

@enderror
@endsection