@php use App\Models\Contact; $contact = Contact::first(); @endphp @extends('frontend.da.layouts.master') @section('content')

تماس با ما

@if (session('success')) @endif
@csrf
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('message')
{{ $message }}
@enderror

جزئیات تماس

{{ $contact->address_da ?? 'آدرس اینجا نمایش داده می‌شود...' }}

{{ $contact->phone ? $contact->phone . ' - ' . $contact->second_phone : 'شماره تماس در اینجا نمایش داده می‌شود...' }}

{{ $contact->email ?? 'ایمیل در اینجا نمایش داده می‌شود...' }}

@endsection