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/marketplace-box/auth/passwords/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

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

@section('editable_content')
    <div class="row">
        <div class="col-md-6">
            <header class="page-header">
                <h1 class="page-title">@lang('corals-marketplace-box::labels.auth.reset_password')</h1>
            </header>
            <div class="box-lg">
                <div class="row" data-gutter="60">
                    <div class="col-md-12">
                        <h3 class="widget-title">@lang('corals-marketplace-box::labels.auth.reset_password')</h3>
                        @if (session('status'))
                            <div class="alert alert-success">
                                {{ session('status') }}
                            </div>
                        @endif
                        <form method="POST" action="{{ route('password.request') }}">
                            {{ csrf_field() }}
                            <input type="hidden" name="token" value="{{ $token }}">
                            <div class="p-2">
                                @php \Actions::do_action('pre_login_form') @endphp
                            </div>
                            <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 for="email">@lang('User::attributes.user.email')</label>
                                <input type="email" name="email" id="email"
                                       class="form-control" placeholder="@lang('User::attributes.user.email')"
                                       value="{{ old('email', $email) }}" autofocus/>

                                @if ($errors->has('email'))
                                    <small class="help-block form-control-feedback">{{ $errors->first('email') }}</small>
                                @endif
                            </div>
                            <div class="form-group has-feedback {{ $errors->has('password') ? ' has-error' : '' }}">
                                <label for="password">@lang('User::attributes.user.password')</label>
                                <input type="password" name="password" class="form-control"
                                       placeholder="@lang('User::attributes.user.password')" id="password"/>
                                @if ($errors->has('password'))
                                    <small class="help-block form-control-feedback">{{ $errors->first('password') }}</small>
                                @endif
                            </div>
                            <div class="form-group has-feedback {{ $errors->has('password_confirmation') ? ' has-error' : '' }}">
                                <label for="password_confirmation">@lang('User::attributes.user.password_confirmation')</label>
                                <input type="password" name="password_confirmation" class="form-control"
                                       placeholder="@lang('User::attributes.user.password_confirmation')"
                                       id="password_confirmation"/>
                                @if ($errors->has('password_confirmation'))
                                    <small class="help-block form-control-feedback">{{ $errors->first('password_confirmation') }}</small>
                                @endif
                            </div>
                            <input class="btn btn-primary" type="submit"
                                   value="@lang('corals-marketplace-box::labels.auth.reset_password')">
                        </form>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <br/>
    <br/>
@endsection

Spamworldpro Mini