Customer Information not capturing

Permalink
I am using Vivid Store to process payments with Authorize.net.. The customer billing information is not being captured by the default checkout.php page??

<?php 
defined('C5_EXECUTE') or die(_("Access Denied."));
use \Concrete\Package\VividStore\Src\VividStore\Utilities\Price as Price;
?>
<?php  if($controller->getTask() == "view" || $controller->getTask() == "failed"){?>
<div class="clearfix">
    <div class="checkout-form-shell">
        <h1><?php echo t("Checkout")?></h1>
        <?php 
            if ($customer->isGuest() && ($requiresLogin || $guestCheckout == 'off' || ($guestCheckout == 'option' && $_GET['guest'] != '1'))){
        ?>
        <div class="checkout-form-group" id="checkout-form-group-signin">
            <?php  
                if ($guestCheckout == 'option' && !$requiresLogin) {
                    $introTitle = t("Sign in, Register or Checkout as Guest");