@extends('layouts.admin') @section('title'){{ __('View Contacts') }} @endsection @section('content') @include('includes.page_header',['title'=>__('View Contacts'),'url'=>route('admin.contacts'),'icon' => 'pe-7s-network'])
{!! Form::label('name', __('Name')) !!}

{{ $contactFeedback->name }}

{!! Form::label('email', __('Email')) !!}

{{ $contactFeedback->email }}

{!! Form::label('phone', __('Phone')) !!}

{{ $contactFeedback->phone }}

{!! Form::label('message', __('Message')) !!}

{{ $contactFeedback->message }}

{!! Form::label('created_at', __('Time')) !!}

{{ $contactFeedback->created_at->toFormattedDateString() }}

{{ __('Back') }}
@endsection