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


Viewing file:     email.blade.php (12.32 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('master.back')

@section('content')

<div class="container-fluid">

    <!-- Page Heading -->
    <div class="card mb-4">
        <div class="card-body">
            <div class="d-sm-flex align-items-center justify-content-between">
                <h3 class=" mb-0 bc-title"> <b>{{ __('Email') }}</b> </h3>
                </div>
        </div>
    </div>

    <!-- Form -->
    <div class="row">

        <div class="col-xl-12 col-lg-12 col-md-12">

            <div class="card o-hidden border-0 shadow-lg">
                <div class="card-body ">
                    <!-- Nested Row within Card Body -->
                    <div class="row">
                        <div class="col-lg-12">
                            <div class="p-5">
                                <form class="admin-form" action="{{ route('back.email.update') }}" method="POST"
                                    enctype="multipart/form-data">

                                    @csrf

                                    @include('alerts.alerts')

                                    <div class="container pl-0 pr-0 ml-0 mr-0 w-100 mw-100">
                                        <div id="tabs">
                                          <ul class="nav nav-pills nav-secondary nav-justified mb-3" role="tablist">
                                            <li class="nav-item">
                                              <a class="nav-link active" data-toggle="pill" href="#conf">{{ __('Configuration') }}</a>
                                            </li>
                                            <li class="nav-item">
                                              <a class="nav-link" data-toggle="pill" href="#template">{{ __('Templates') }}</a>
                                            </li>

                                          </ul>

                                        <!-- Tab panes -->
                                        <div class="tab-content">
                                          <div id="conf" class="container tab-pane active"><br>


                                            <div class="row justify-content-center">

                                                <div class="col-lg-8">

                                                    <form action="{{ route('back.setting.update') }}" method="POST" enctype="multipart/form-data">

                                                    @csrf

                                                   
                                                    <div class="form-group">
                                                        <label class="switch-primary">
                                                          <input type="checkbox" class="switch switch-bootstrap  " name="order_mail" value="1" {{ $setting->order_mail == 1 ? 'checked' : '' }}>
                                                          <span class="switch-body"></span>
                                                          <span class="switch-text">{{ __('After Order Admin Get Mail') }}</span>
                                                        </label>
                                                    </div>
{{-- 
                                                  <div class="form-group">
                                                    <label class="switch-primary">
                                                      <input type="checkbox" class="switch switch-bootstrap  " name="ticket_mail" value="1" {{ $setting->ticket_mail == 1 ? 'checked' : '' }}>
                                                      <span class="switch-body"></span>
                                                      <span class="switch-text">{{ __('After Ticket Reply Send Mail') }}</span>
                                                    </label>
                                                </div> --}}
                                                    
                                                <div class="form-group">
                                                    <label class="switch-primary">
                                                      <input type="checkbox" class="switch switch-bootstrap status radio-check" name="smtp_check" value="1" {{ $setting->smtp_check == 1 ? 'checked' : '' }}>
                                                      <span class="switch-body"></span>
                                                      <span class="switch-text">{{ __('SMTP Service') }}</span>
                                                    </label>
                                                </div>
                                                

                                                    <div class="radio-show {{ $setting->smtp_check == 0 ? 'd-none' : '' }}">

                                                        <div class="form-group ">
                                                            <label for="email_host">{{ __('SMTP Host') }}</label>
                                                            <input type="text" class="form-control " id="email_host" name="email_host" placeholder="{{ __('Enter SMTP Host') }}" value="{{ $setting->email_host }}" ="">
                                                        </div>

                                                        <div class="form-group ">
                                                            <label for="email_port">{{ __('SMTP Port') }}</label>
                                                            <input type="text" class="form-control " id="email_port" name="email_port" placeholder="{{ __('Enter SMTP Port') }}" value="{{ $setting->email_port }}" ="">
                                                        </div>

                                                        <div class="form-group ">
                                                            <label for="email_encryption">{{ __('SMTP Encryption') }}</label>
                                                            <input type="text" class="form-control " id="email_encryption" name="email_encryption" placeholder="{{ __('Enter SMTP Encryption') }}" value="{{ $setting->email_encryption }}" ="">
                                                        </div>

                                                        <div class="form-group ">
                                                            <label for="email_user">{{ __('SMTP Username') }}</label>
                                                            <input type="text" class="form-control " id="email_user" name="email_user" placeholder="{{ __('Enter SMTP Username') }}" value="{{ $setting->email_user }}" ="">
                                                        </div>

                                                        <div class="form-group ">
                                                            <label for="email_pass">{{ __('SMTP Password') }}</label>
                                                            <input type="text" class="form-control " id="email_pass" name="email_pass" placeholder="{{ __('Enter SMTP Password') }}" value="{{ $setting->email_pass }}" ="">
                                                        </div>

                                                    </div>

                                                    <div class="form-group ">
                                                        <label for="email_from">{{ __('Email From') }}</label>
                                                        <input type="text" class="form-control " id="email_from" name="email_from" placeholder="{{ __('Enter Email From') }}" value="{{ $setting->email_from }}" ="">
                                                    </div>


                                                    <div class="form-group ">
                                                        <label for="email_from_name">{{ __('Email From Name') }}</label>
                                                        <input type="text" class="form-control " id="email_from_name" name="email_from_name" placeholder="{{ __('Enter Email From Name') }}" value="{{ $setting->email_from_name }}" ="">
                                                    </div>

                                                    <div class="form-group ">
                                                        <label for="contact_email">{{ __('Contact Email') }}</label>
                                                        <input type="text" class="form-control " id="contact_email" name="contact_email" placeholder="{{ __('Enter Contact Email') }}" value="{{ $setting->contact_email }}" ="">
                                                    </div>



                                                        <div>

                                                            <div class="form-group d-flex justify-content-center">
                                                                <button type="submit" class="btn btn-secondary btn-block w-100">{{ __('Submit') }}</button>
                                                            </div>

                                                        </div>

                                                    </form>

                                                </div>

                                            </div>

                                          </div>

                                          <div id="template" class="container tab-pane"><br>

                                            <!-- DataTales -->
                                            <div class="card shadow mb-4">
                                                <div class="card-body">

                                                    <div class="gd-responsive-table">
                                                        <table class="table table-bordered table-striped" id="admin-table" width="100%" cellspacing="0">

                                                            <thead>
                                                                <tr>
                                                                    <th width="20%">{{ __('Type') }}</th>
                                                                    <th width="20%">{{ __('Subject') }}</th>
                                                                    <th width="15%">{{ __('Actions') }}</th>
                                                                </tr>
                                                            </thead>

                                                            <tbody>
                                                                @foreach($datas as $data)
                                                                <tr>
                                                                    <td>
                                                                        {{ $data->type }}
                                                                    </td>
                                                                    <td>
                                                                        {{ $data->subject }}
                                                                    </td>
                                                                    <td>
                                                                        <div class="action-list">
                                                                            <a class="btn btn-secondary btn-sm"
                                                                                href="{{ route('back.template.edit',$data->id) }}">
                                                                                <i class="fas fa-edit"></i> {{ __('Edit') }}
                                                                            </a>
                                                                        </div>
                                                                    </td>
                                                                </tr>
                                                            @endforeach
                                                            </tbody>

                                                        </table>
                                                    </div>
                                                </div>
                                            </div>

                                          </div>

                                        </div>

                                    </div>

                                      </div>

                                    <div>


                                </form>

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

        </div>

    </div>

</div>

@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.0147 ]--