@php $headerSetting = \App\Models\Setting::firstOrCreate([], ['slug' => (string) Str::orderedUuid()]); @endphp @extends('layouts.default') @section('title', 'Nos contacts') @section('content') @if ($contacts->hero_status)
@if ($contacts->hero_subtitle) {{ $contacts->hero_subtitle }} @endif @if ($contacts->hero_title)

{{ $contacts->hero_title }}

@endif
@endif
@csrf

Formulaire de contact

@if ($contacts->contact_subtitle) {{ $contacts->contact_subtitle }} @endif @if ($contacts->contact_title)

{{ $contacts->contact_title }}

@endif @if ($headerSetting->email or $headerSetting->phone or $headerSetting->address)
    @if ($headerSetting->address)
  • {{ $headerSetting->address }}
  • @endif @if ($headerSetting->email)
  • Email: {{ $headerSetting->email }}
  • @endif @if ($headerSetting->phone)
  • Phone:{{ $headerSetting->phone }}
  • @endif
@endif @if ($headerSetting->facebook or $headerSetting->twitter or $headerSetting->instagram or $headerSetting->linkedin) @endif
@endsection