{!! Form::label('id', 'Id:') !!}

{{ $contact->id }}

{!! Form::label('name', 'Name:') !!}

{{ $contact->name }}

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

{{ $contact->email }}

{!! Form::label('phone_number', 'Phone Number:') !!}

{{ $contact->phone_number }}

{!! Form::label('subject', 'Subject:') !!}

{{ $contact->subject }}

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

{{ $contact->message }}

{!! Form::label('created_at', 'Created At:') !!}

{{ $contact->created_at }}

{!! Form::label('updated_at', 'Updated At:') !!}

{{ $contact->updated_at }}