Sh3ll
OdayForums


Server : Apache
System : Linux 145.162.205.92.host.secureserver.net 5.14.0-611.45.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 1 05:56:53 EDT 2026 x86_64
User : tradze ( 1001)
PHP Version : 8.1.34
Disable Function : NONE
Directory :  /home/tradze/www/storage-old/framework/views/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/tradze/www/storage-old/framework/views/9c5ec01cae35c981b755ff278aa89ba6e357b489.php
<?php /*billing address*/ ?>
<?php 
    $billing = Auth::user()->billingaddress()->orderBy('is_main','desc')->orderBy('id','desc')->first();
 ?>
<div class="row" style="margin-top:10px;">
    <div class="col-md-12">
        <i class="fa fa-address-card"></i>
        <label for="billing_address">Billing Address</label>
        <div>
            <?php echo Form::text('billing_address',$billing?$billing->address:null,array('class'=>'form-control','placeholder'=>'address','id'=>'billing_address')); ?>

        </div>
    </div>
</div>
<div class="row" style="margin-top:10px;">
    <div class="col-md-6">

        <label for="billing_county" class="card-number">County</label>
        <?php echo Form::text('billing_county',$billing?$billing->county:null,array('class'=>'form-control','placeholder'=>'County','id'=>'billing_county')); ?>

    </div>
    <div class="col-md-6">

        <label for="billing_postcode" class="">Postcode</label>
        <?php echo Form::text('billing_postcode',$billing?$billing->postcode:null,array('class'=>'form-control','placeholder'=>'postcode','id'=>'billing_postcode')); ?>

        <?php echo Form::hidden('billing_country',$billing?$billing->country:'GB'); ?>

    </div>
</div>
<hr>

ZeroDay Forums Mini