@extends('layouts.admin_panel') @section('content')
@foreach($contacts as $contact) @endforeach
User Type Name Email Subject Message Delete
@if($contact->user_id) User ID : {{ $contact->user_id }} @else Unregistered @endif {{ $contact->name }} {{ $contact->email }} {{ $contact->subject }} {{ $contact->message }}
{{ method_field('DELETE') }} {{ csrf_field() }}
Delete
@endsection @section('bottom-scripts') @endsection