Magento 2 admin user role not displaying anything

I just done this and it is working perfectly now

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Acl/etc/acl.xsd">
    <acl>
        <resources>
            <resource id="Magento_Backend::admin">                
                <resource id="Magento_Backend::stores">
                    <resource id="Magento_Backend::stores_settings">
                        <resource id="Magento_Config::config">
                            <resource id="Suyati_Scontact::contact_manage" title="Scontacts Section" />
                        </resource>
                    </resource>
                </resource>
            </resource>
        </resources>
    </acl>
</config>

I've tried your code and found an issue. You are trying to extend "Magento_Contact::contacts" resource and insert a child resource into it. But actually such a resource doesn't exist. And Magento tries to create this new resource. But it will throw an error as the resource has no "title" parameter