File manager - Edit - /var/www/ratemypay_dev/storage/framework/views/54130fde66a5de93eb5d7d0aa1aef2bf.php
Back
<?php $__env->startSection('title', 'Business Information - ' . config('app.name')); ?> <?php $__env->startSection('content'); ?> <div class="flex items-center justify-center mb-3"> <img src="<?php echo e(asset('logo.png')); ?>" alt="<?php echo e(config('app.name', 'RateMyPay')); ?>" class="h-7 w-auto"> </div> <p class="text-center text-sm text-[#4A5565] mb-8">1 / 2</p> <h1 class="text-[28px] font-bold text-[#101828] mb-1">Business Information</h1> <p class="text-sm text-[#4A5565] mb-8">Tell us about your company so we can personalize your experience</p> <?php if($errors->any()): ?> <div class="rounded-xl border border-[#FCA5A5] bg-[#FEF2F2] px-4 py-3 text-sm text-[#B91C1C] mb-4"> <?php echo e($errors->first()); ?> </div> <?php endif; ?> <form action="<?php echo e(route('business.business-info.submit')); ?>" method="POST" class="flex flex-col gap-5"> <?php echo csrf_field(); ?> <div> <label for="business_name" class="block text-sm font-semibold text-[#101828] mb-2"> Business Name <span class="text-[#F43F5E]">*</span> </label> <input type="text" id="business_name" name="business_name" required placeholder="Acme Corporation" value="<?php echo e(old('business_name', $org->name ?? '')); ?>" class="w-full h-12 px-4 rounded-xl border border-[#E5E7EB] focus:outline-none focus:ring-2 focus:ring-[#2F3D7E]/20 focus:border-[#2F3D7E] text-sm <?php $__errorArgs = ['business_name']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> border-[#F87171] <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?>"> <?php $__errorArgs = ['business_name']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="text-xs text-[#B91C1C] mt-1.5"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <div class="grid grid-cols-1 md:grid-cols-2 gap-5"> <div> <?php $industries = [ 'Accounting', 'Advertising & Marketing', 'Aerospace & Defense', 'Agriculture & Forestry', 'Architecture & Planning', 'Automotive', 'Aviation & Aerospace', 'Banking', 'Biotechnology', 'Broadcasting', 'Chemicals', 'Civil Engineering', 'Computer & Network Security', 'Computer Software', 'Construction', 'Consumer Goods', 'Cosmetics', 'Defense & Space', 'E-Learning', 'Education', 'Electrical & Electronic Manufacturing', 'Energy & Utilities', 'Entertainment', 'Environmental Services', 'Events Services', 'Fashion & Apparel', 'Financial Services', 'Fintech', 'Food & Beverages', 'Government', 'Graphic Design', 'Healthcare', 'Hospitality', 'Human Resources', 'Information Technology', 'Insurance', 'Internet', 'Investment Banking', 'Investment Management', 'Law Practice', 'Legal Services', 'Leisure & Travel', 'Logistics & Supply Chain', 'Luxury Goods & Jewelry', 'Machinery', 'Management Consulting', 'Manufacturing', 'Maritime', 'Media Production', 'Medical Devices', 'Mining & Metals', 'Music', 'Newspapers & Journalism', 'Non-Profit', 'Oil & Gas', 'Online Media', 'Outsourcing/Offshoring', 'Performing Arts', 'Pharmaceuticals', 'Philanthropy', 'Photography', 'Plastics', 'Printing', 'Public Relations', 'Public Safety', 'Publishing', 'Real Estate', 'Recreational Facilities', 'Religious Institutions', 'Renewables & Environment', 'Research', 'Restaurants', 'Retail', 'Security & Investigations', 'Semiconductors', 'Shipbuilding', 'Sporting Goods', 'Sports', 'Staffing & Recruiting', 'Telecommunications', 'Textiles', 'Think Tanks', 'Tobacco', 'Translation & Localization', 'Transportation', 'Utilities', 'Venture Capital & Private Equity', 'Veterinary', 'Warehousing', 'Wholesale', 'Wine & Spirits', 'Wireless', 'Writing & Editing', 'Other', ]; ?> <label for="industry" class="block text-sm font-semibold text-[#101828] mb-2"> Industry <span class="text-[#F43F5E]">*</span> </label> <input type="text" id="industry" name="industry" list="industries-list" required autocomplete="off" placeholder="Select or type an industry" value="<?php echo e(old('industry', $org->industry ?? '')); ?>" class="w-full h-12 px-4 rounded-xl border border-[#E5E7EB] focus:outline-none focus:ring-2 focus:ring-[#2F3D7E]/20 focus:border-[#2F3D7E] text-sm <?php $__errorArgs = ['industry']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> border-[#F87171] <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?>"> <datalist id="industries-list"> <?php $__currentLoopData = $industries; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $industry): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($industry); ?>"></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </datalist> <?php $__errorArgs = ['industry']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="text-xs text-[#B91C1C] mt-1.5"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <div> <label for="company_size" class="block text-sm font-semibold text-[#101828] mb-2">Company Size</label> <select id="company_size" name="company_size" class="w-full h-12 px-4 rounded-xl border border-[#E5E7EB] focus:outline-none focus:ring-2 focus:ring-[#2F3D7E]/20 focus:border-[#2F3D7E] text-sm bg-white"> <option value="" disabled <?php echo e(old('company_size', $org->company_size ?? '') === '' ? 'selected' : ''); ?>></option> <option value="1-10" <?php echo e(old('company_size', $org->company_size ?? '') === '1-10' ? 'selected' : ''); ?>>1-10 employees</option> <option value="11-50" <?php echo e(old('company_size', $org->company_size ?? '') === '11-50' ? 'selected' : ''); ?>>11-50 employees</option> <option value="51-200" <?php echo e(old('company_size', $org->company_size ?? '') === '51-200' ? 'selected' : ''); ?>>51-200 employees</option> <option value="201-500" <?php echo e(old('company_size', $org->company_size ?? '') === '201-500' ? 'selected' : ''); ?>>201-500 employees</option> <option value="501-1000" <?php echo e(old('company_size', $org->company_size ?? '') === '501-1000' ? 'selected' : ''); ?>>501-1000 employees</option> <option value="1000+" <?php echo e(old('company_size', $org->company_size ?? '') === '1000+' ? 'selected' : ''); ?>>1000+ employees</option> </select> </div> </div> <div class="grid grid-cols-1 md:grid-cols-2 gap-5"> <div x-data="{ countries: [], async fetchCountries() { try { const res = await fetch('<?php echo e(route('location.countries')); ?>'); const json = await res.json(); if (json.status) this.countries = json.data; } catch (e) {} } }" x-init="fetchCountries()" > <label for="country" class="block text-sm font-semibold text-[#101828] mb-2"> Country <span class="text-[#F43F5E]">*</span> </label> <input type="text" id="country" name="country" list="countries-list" required autocomplete="off" placeholder="Select or type a country" value="<?php echo e(old('country', $org->country ?? '')); ?>" class="w-full h-12 px-4 rounded-xl border border-[#E5E7EB] focus:outline-none focus:ring-2 focus:ring-[#2F3D7E]/20 focus:border-[#2F3D7E] text-sm <?php $__errorArgs = ['country']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> border-[#F87171] <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?>" > <datalist id="countries-list"> <template x-for="country in countries" :key="country.iso2"> <option :value="country.name"></option> </template> </datalist> <?php $__errorArgs = ['country']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="text-xs text-[#B91C1C] mt-1.5"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <div> <label for="website" class="block text-sm font-semibold text-[#101828] mb-2">Website</label> <input type="url" id="website" name="website" placeholder="https://www.company.com" value="<?php echo e(old('website', $org->website ?? '')); ?>" class="w-full h-12 px-4 rounded-xl border border-[#E5E7EB] focus:outline-none focus:ring-2 focus:ring-[#2F3D7E]/20 focus:border-[#2F3D7E] text-sm <?php $__errorArgs = ['website']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> border-[#F87171] <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?>"> <?php $__errorArgs = ['website']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="text-xs text-[#B91C1C] mt-1.5"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> </div> <div> <label for="registration_number" class="block text-sm font-semibold text-[#101828] mb-2"> Business Registration Number <span class="text-[#4A5565] font-normal">(Optional)</span> </label> <input type="text" id="registration_number" name="registration_number" placeholder="12-3456789" value="<?php echo e(old('registration_number', $org->registration_number ?? '')); ?>" class="w-full h-12 px-4 rounded-xl border border-[#E5E7EB] focus:outline-none focus:ring-2 focus:ring-[#2F3D7E]/20 focus:border-[#2F3D7E] text-sm"> <p class="text-xs text-[#4A5565] mt-1.5">Helps us verify your business and unlock enterprise features</p> </div> <div class="flex justify-center mt-6"> <button type="submit" class="min-w-[280px] h-12 px-8 rounded-xl bg-[#2F3D7E] hover:bg-[#1E2858] text-white font-medium text-sm transition"> Continue </button> </div> </form> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.business-auth-card', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /var/www/ratemypay_dev/resources/views/business/auth/business-info.blade.php ENDPATH**/ ?>
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings