!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/marchant/   drwxr-xr-x
Free 13.27 GB of 57.97 GB (22.89%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     register.blade.php (7.1 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
  <meta charset="UTF-8">
  <meta content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no" name="viewport">
  <title>{{ env('APP_NAME') }}</title>
  <meta name="csrf-token" content="{{ csrf_token() }}">
  <link rel="shortcut icon" type="image/x-icon" href="{{ asset('uploads/favicon.ico') }}">
  <!-- General CSS Files -->
  <link rel="stylesheet" href="{{ asset('assets/css/bootstrap.min.css') }}">
  <link rel="stylesheet" href="{{ asset('assets/css/fontawesome.min.css') }}">

  <!-- Template CSS -->
  <link rel="stylesheet" href="{{ asset('assets/css/style.css') }}">
  <link rel="stylesheet" href="{{ asset('assets/css/components.css') }}">
</head>

<body>
 <div id="app">
  <section class="section">
    <div class="container mt-5">
      <div class="row">
        <div class="col-12 col-sm-10 offset-sm-1 col-md-8 offset-md-2 col-lg-8 offset-lg-2 col-xl-8 offset-xl-2">
          <div class="login-brand">
            <a href="{{ url('/') }}"><img src="{{ asset('uploads/logo.png') }}" alt="{{ env('APP_NAME') }}" width="100" class="shadow-light"></a>
          </div>

          <div class="card card-primary">
            <div class="card-header"><h4>{{ __('Register') }}</h4></div>
            <form class="basicform"  method="post" action="{{ route('merchant.register-make',$info->id) }}">
              @csrf

              <div class="card-body">
              
                  <div class="row">
                    <div class="form-group col-6">
                      <label for="frist_name">{{ __('Name') }}</label>
                      <input id="frist_name" type="text" class="form-control" name="name" autofocus>
                    </div>
                    <div class="form-group col-6">
                      <label for="last_name">{{ __('Email') }}</label>
                      <input id="email" type="email" class="form-control" name="email">
                    </div>
                  </div>



                  <div class="row">
                    <div class="form-group col-6">
                      <label for="password" class="d-block">{{ __('Password') }}</label>
                      <input id="password" type="password" class="form-control pwstrength" data-indicator="pwindicator" name="password">
                      <div id="pwindicator" class="pwindicator">
                        <div class="bar"></div>
                        <div class="label"></div>
                      </div>
                    </div>
                    <div class="form-group col-6">
                      <label for="password2" class="d-block">{{ __('Password Confirmation') }}</label>
                      <input id="password2" type="password" class="form-control" name="password_confirmation">
                    </div>
                  </div>

                 
                  <div class="form-divider">
                    {{ __('Your Subdomain') }} <br>
                    <span>{{ __('Example') }}: </span>
                    <span>{shop-name}.{{ env('APP_PROTOCOLESS_URL') }}</span>
                  </div>
                  <div class="row">
                   <div class="col-12">
                    <div class="form-group">
                      <div class="input-group mb-2">
                        <input type="text" class="form-control text-right" name="domain" placeholder="shop name">
                        <div class="input-group-append">
                          <div class="input-group-text">.{{ env('APP_PROTOCOLESS_URL') }}</div>
                        </div>
                      </div>
                    </div>

                  </div> 
                </div>
                
               

                
              
                @if(env('NOCAPTCHA_SITEKEY') != null)
                 <div class="form-group">
                
                  {!! NoCaptcha::renderJs() !!}
                  {!! NoCaptcha::display() !!}


               
              </div>
                @endif 
                <div class="form-group">
                  <div class="custom-control custom-checkbox">
                    <input type="checkbox" required="" name="agree" class="custom-control-input" id="agree">
                    <label class="custom-control-label" for="agree">{{ __('I agree with the') }} <a href="{{ url('/page/terms-and-condition') }}">{{ __('terms and conditions') }}</a></label>
                  </div>
                </div>

                <div class="form-group">
                  <button type="submit" class="btn btn-primary btn-lg btn-block basicbtn">
                   {{ __(' Register') }}
                  </button>
                </div>
              </form>
            </div>
          </div>
          <div class="simple-footer">
            Copyright &copy; {{ env('APP_NAME') }} {{ date('Y') }}
          </div>
        </div>
      </div>
    </div>
  </section>
</div>
<input type="hidden" id="location_url" value="{{ url('/merchant/make-payment',$info->id) }}">
<!-- General JS Scripts -->
<script src="{{ asset('assets/js/jquery-3.5.1.min.js') }}"></script>
<script src="{{ asset('assets/js/bootstrap.min.js') }}"></script>
<script src="{{ asset('assets/js/sweetalert2.all.min.js') }}"></script>
<!-- Template JS File -->
<script src="{{ asset('assets/js/scripts.js') }}"></script>

<script type="text/javascript">
  "use strict";
  
  $(".basicform").on('submit', function(e){
    e.preventDefault();
    $.ajaxSetup({
      headers: {
        'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
      }
    });
    var basicbtnhtml=$('.basicbtn').html();
    $.ajax({
      type: 'POST',
      url: this.action,
      data: new FormData(this),
      dataType: 'json',
      contentType: false,
      cache: false,
      processData:false,
      beforeSend: function() {

        $('.basicbtn').html("Please Wait....");
        $('.basicbtn').attr('disabled','')

      },
      
      success: function(response){ 
        $('.basicbtn').removeAttr('disabled')
        Sweet('success',response);
        $('.basicbtn').html(basicbtnhtml);
        if (response.redirect == true) {
          window.location.href = response.domain;
        }
        else{
          window.location.href = $('#location_url').val();
        }
        
      },
      error: function(xhr, status, error) 
      {
        $('.basicbtn').html(basicbtnhtml);
        $('.basicbtn').removeAttr('disabled')
        $('.errorarea').show();
        $.each(xhr.responseJSON.errors, function (key, item) 
        {
          Sweet('error',item)
          $("#errors").html("<li class='text-danger'>"+item+"</li>")
        });
        errosresponse(xhr, status, error);
      }
    })


  });

  function Sweet(icon,title,time=3000){
    
    const Toast = Swal.mixin({
      toast: true,
      position: 'top-end',
      showConfirmButton: false,
      timer: time,
      timerProgressBar: true,
      onOpen: (toast) => {
        toast.addEventListener('mouseenter', Swal.stopTimer)
        toast.addEventListener('mouseleave', Swal.resumeTimer)
      }
    })

    
    Toast.fire({
      icon: icon,
      title: title,
    })
  }
</script>
</body>
</html>





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