For delete, in the view page
{!! Form::open(['method' => 'DELETE','route' => ['contact.destroy', $contact->id],'style'=>'display:inline']) !!} {!! Form::submit('Delete', ['class' => 'btn btn-danger']) !!} {!! Form::close() !!}
And in the controller
$contact = Contact::findOrFail($id); $contact->delete(); return redirect()->back()->with('ok', 'Delete Success Message ');