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/directory-basic/auth/passwords/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/job-board.corals.io/resources/themes/directory-basic/auth/passwords/email.blade.php
@extends('layouts.theme')

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

@section('editable_content')

    <div class="main-register-holder">
        <div class="main-register fl-wrap">
            <div id="tabs-container">
                <div class="tab">
                    <div id="tab-1" class="tab-content">
                        <div class="custom-form">
                            <h4> Reset Password</h4>
                            @if (session('status'))
                                <div class="alert alert-success">
                                    {{ session('status') }}
                                </div>
                            @endif
                            <form method="post" action="{{ route('password.email') }}" id="login-form"
                                  class="login-form">

                                {{ csrf_field() }}
                                <div class="form-group text-center">
                                    @if(session('confirmation_user_id'))
                                        <a href="{{ route('auth.resend_confirmation') }}">@lang('User::labels.confirmation.resend_email')</a>
                                    @endif
                                </div>
                                <div class="form-group has-feedback {{ $errors->has('email') ? ' has-error' : '' }}">
                                    <label><i class="fa fa-envelope-o"></i> </label>

                                    <input name="email" type="text" value="{{ old('email') }}"
                                           placeholder="@lang('User::attributes.user.email')" autofocus>

                                    @if ($errors->has('email'))
                                        <div class="help-block">
                                            <strong>{{ $errors->first('email') }}</strong>
                                        </div>
                                    @endif
                                </div>
                                <button type="submit" class="log-submit-btn"><span>Send Password Rest Link</span>
                                </button>
                                <div class="clearfix"></div>

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

@endsection

Spamworldpro Mini