@extends('backend.layouts.app') @section('title') Show Contact Us @endsection @section('headerWithButton')

@yield('title')

@endsection @section('content')
{{ $contactUs->full_name }}
{{ $contactUs->contact_no }}
{{ $contactUs->email }}

{{ $contactUs->message }}
{{-- is contacted --}}
{{ $contactUs->is_contacted == true ? 'Yes' : 'No' }}

{!! $contactUs->contact_remarks !!}
@if ($contactUs->is_contacted == 0)
@method('PUT') @csrf
{{-- is contacted --}} {{-- contact remarks --}}
@endif @endsection