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/ts.corals.io/corals-api/resources/themes/admin/auth/passwords/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/ts.corals.io/corals-api/resources/themes/admin/auth/passwords/email.blade.php
@extends('layouts.auth')

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

@section('content')
    <h4 class="login-box-msg">@lang('corals-admin::labels.auth.reset_password')</h4>

    @if (session('status'))
        <div class="alert alert-success">
            {{ session('status') }}
        </div>
    @endif

    <form method="POST" action="{{ route('password.email') }}">
        {{ 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' : '' }}">
            <input type="email" name="email"
                   class="form-control" placeholder="Email"
                   value="{{ old('email') }}" autofocus/>
            <span class="glyphicon glyphicon-envelope form-control-feedback"></span>

            @if ($errors->has('email'))
                <div class="help-block">
                    <strong>{{ $errors->first('email') }}</strong>
                </div>
            @endif
        </div>

        <div class="row">
            <!-- /.col -->
            <div class="col-xs-12">
                <button type="submit"
                        class="btn btn-primary btn-block btn-flat">@lang('corals-admin::labels.auth.send_password_reset')</button>
            </div>
            <!-- /.col -->
        </div>
    </form>
@endsection

Spamworldpro Mini