@extends('layouts.app') @section('title', 'Hubungi Kami - INUFA') @section('header', $contactInfo->title ?? 'Hubungi Kami') @section('content')
@if($contactInfo) @if($contactInfo->description)
{!! nl2br(e($contactInfo->description)) !!}
@endif
@if($contactInfo->name)
{{ $contactInfo->name }}
@endif @if($contactInfo->address)
{!! nl2br(e($contactInfo->address)) !!}
@endif @if($contactInfo->phone) @endif @if($contactInfo->email) @endif @if($contactInfo->whatsapp) @endif
@else
Informasi kontak belum tersedia.
@endif
@endsection