Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/job-board.corals.io/resources/themes/quantum/auth/passwords/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/job-board.corals.io/resources/themes/quantum/auth/passwords/reset.blade.php
@extends('layouts.auth')

@section('title','Reset Password')

@section('content')
    <div class="container">
        <h4 class="text-center m-b-20">@lang('corals-quantum-admin::labels.auth.reset_password')</h4>

        <form class="sign-in-form" method="POST" action="{{ route('password.request') }}">
            {{ csrf_field() }}
            <div class="card">
                <div class="card-body">
                    <a href="{{ url('/') }}" class="brand text-center d-block m-b-20">
                        <img src="{{ \Settings::get('site_logo') }}"
                             alt="{{ \Settings::get('site_name') }}"
                             class="img-fluid" style="max-width: 200px;"/>
                    </a>
                    <input type="hidden" name="token" value="{{ $token }}">

                    <div class="form-group {{ $errors->has('email') ? ' has-danger' : '' }}">
                        <div class="col-xs-12">
                            <input type="email" name="email" id="email"
                                   class="form-control" placeholder="@lang('User::attributes.user.email')"
                                   value="{{ old('email', $email) }}" autofocus/>
                            <label>@lang('User::attributes.user.email')</label>
                            @if ($errors->has('email'))
                                <small class="form-control-feedback">{{ $errors->first('email') }}</small>
                            @endif
                        </div>
                    </div>
                    <div class="form-group {{ $errors->has('password') ? ' has-danger' : '' }}">
                        <div class="col-xs-12">
                            <input type="password" name="password" id="password"
                                   class="form-control" placeholder="@lang('User::attributes.user.password')"
                                   value="{{ old('password') }}"/>
                            <label>@lang('User::attributes.user.password')</label>

                            @if ($errors->has('password'))
                                <small class="form-control-feedback">{{ $errors->first('password') }}</small>
                            @endif
                        </div>
                    </div>
                    <div class="form-group {{ $errors->has('password_confirmation') ? ' has-danger' : '' }}">
                        <div class="col-xs-12">
                            <input type="password" name="password_confirmation" id="password_confirmation"
                                   class="form-control"
                                   placeholder="@lang('User::attributes.user.password_confirmation')"
                                   value="{{ old('password_confirmation') }}"/>
                            <label>@lang('User::attributes.user.password_confirmation')</label>

                            @if ($errors->has('password_confirmation'))
                                <small class="form-control-feedback">{{ $errors->first('password_confirmation') }}</small>
                            @endif
                        </div>
                    </div>

                    <div class="form-group text-center">
                        <div class="col-xs-12 p-b-20">
                            <button class="btn btn-block btn-success btn-rounded"
                                    type="submit">@lang('corals-quantum-admin::labels.auth.reset_password')</button>
                        </div>
                    </div>
                </div>
            </div>
        </form>
    </div>
@endsection

Spamworldpro Mini