@extends('backend.layouts.app') @section('title', 'Liên hệ') @section('content')
@include('backend.layouts.content-header', ['page' => 'Liên hệ'])
@include('backend.components.notification')
{{-- --}} {{-- --}} {{-- --}} {{-- --}}
Subject {{ $contact->subject }}
Name {{ $contact->name }}
Phone {{ $contact->phone }}
Email {{ $contact->email }}
{{ __('label.address') }}{{ $contact->address }}
Message {{ $contact->message }}
@if(isValidEmail($contact->email))

Reply

@csrf
@error('subject')

{{ $message }}

@enderror
@error('content')

{{ $message }}

@enderror
@endif @if($contact->replies->count())
@foreach($contact->replies as $reply) @endforeach
Time Subject Content
{{ $reply->created_at }} {{ $reply->subject }} {!! $reply->content !!}
@endif
@endsection @push('css') @endpush @push('js') @endpush