Last updated / Created

Is there a way to allow these fields to be visible? I need this displayed on profile pages . Thanks.

You can access the values of the two via code and set it to a text component.

$w.onReady(function () {
	$w("#myDataset").onReady(()=>{
		let itemObj = $w("#myDataset").getCurrentItem();
		$w("#text1").text = itemObj._createdDate.toDateString();
	});
});

You can read more in our API reference site.

If you wish to have those two fields available in the Connect panel, the same as regular fields, please post a feature request.