@extends('admin.layouts.master') @section('title', 'View Message') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any()) @endif
{{ __('View Message') }}

{{ __(' User ') }}: {{ $show->fname }}

{{ __('Email ID. :') }} {{ $show->email }}
{{ __('Contact No. :') }} {{ $show->mobile }}
{{ __('Date :') }} {{ date('jS F Y', strtotime($show->created_at)) }}

{{ __('Message :') }}

{{ $show->message }}

{{ __('Reason :') }}

{{ $show->reason }}



@endsection @section('script') @endsection