@extends('Backend.dashboard') @section('title') Full Message @endsection @section('content') @if(Session::has('success'))
@endif @if(Session::has('danger'))
@endif @if(count($errors) > 0)
@foreach($errors->all() as $error) @endforeach
@endif
From : {{ $message->name }} - {{ $message->email }}
Message Subject {{ $message->subject }}
Full Message {{ $message->message }}
@endsection