</th>
                <th scope="col" class="manage-column field-label">
                    <span>Label<?php 
    pods_help(__("<h6>Label</h6>The label is the descriptive name to identify the Pod field.", 'pods'));
    ?>
</span>
                </th>
                <th scope="col" class="manage-column field-machine-name">
                    <span>Name<?php 
    pods_help(__("<h6>Name</h6>The name attribute is what is used to identify and access the Pod field programatically.", 'pods'));
    ?>
</span>
                </th>
                <th scope="col" class="manage-column field-field-type">
                    <span>Field Type<?php 
    pods_help(__("<h6>Field Types</h6>Field types are used to determine what kind of data will be stored in the Pod.  They can range from, dates, text, files, etc.", 'pods'));
    ?>
</span>
                </th>
            </tr>
        </tfoot>
        <tbody class="pods-manage-list">
            <?php 
    // Empty Row for Flexible functionality
    $pods_i = '--1';
    $field = array('id' => '__1', 'name' => '', 'label' => '', 'type' => 'text');
    include PODS_DIR . 'ui/admin/setup-edit-field-fluid.php';
    $pods_i = 1;
    foreach ($pod['fields'] as $field) {
        include PODS_DIR . 'ui/admin/setup-edit-field.php';
        $pods_i++;
<label<?php 
PodsForm::attributes($attributes, $name, 'label');
?>
>
    <?php 
echo $label;
if (1 == pods_var('required', $options, pods_var('options', $options, $options))) {
    echo ' <abbr title="required" class="required">*</abbr>';
}
if (0 == pods_var('grouped', $options, 0, null, true) && !empty($help) && 'help' != $help) {
    pods_help($help);
}
?>
</label>