![]() 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/rentpix.corals.io/resources/themes/rentpix/auth/passwords/ |
@extends('layouts.auth') @section('title','Reset Password') @section('content') <div class="col-md-4"> <div class="block block-rounded block-themed mb-0"> <div class="block-header bg-primary-dark"> <h3 class="block-title">@lang('corals-admin::labels.auth.reset_password')</h3> <div class="block-options"> <a class="btn-block-option js-tooltip-enabled" href="{{url('login')}}" data-toggle="tooltip" data-placement="left" title="" data-original-title="Sign In"> <i class="fa fa-sign-in"></i> </a> </div> </div> <div class="block-content"> <div class="p-sm-3 px-lg-4 py-lg-5"> <h3 class="text-muted">Reset your password.</h3> <form method="POST" action="{{ route('password.request') }}"> {{ csrf_field() }} <input type="hidden" name="token" value="{{ $token }}"> <div class="form-group has-feedback {{ $errors->has('email') ? ' has-error' : '' }}"> <input type="email" name="email" class="form-control form-control-alt form-control-lg" placeholder="@lang('User::attributes.user.email')" value="{{ old('email') }}"/> @if ($errors->has('email')) <div class="help-block"> <strong>{{ $errors->first('email') }}</strong> </div> @endif </div> <div class="form-group has-feedback {{ $errors->has('password') ? ' has-error' : '' }}"> <input type="password" name="password" class="form-control form-control-alt form-control-lg" placeholder="@lang('User::attributes.user.password')"/> @if ($errors->has('password')) <div class="help-block"> <strong>{{ $errors->first('password') }}</strong> </div> @endif </div> <div class="form-group has-feedback {{ $errors->has('password_confirmation') ? ' has-error' : '' }}"> <input type="password" name="password_confirmation" class="form-control form-control-alt form-control-lg" placeholder="@lang('User::attributes.user.retype_password')"/> @if ($errors->has('password_confirmation')) <div class="help-block"> <strong>{{ $errors->first('password_confirmation') }}</strong> </div> @endif </div> <div class="form-group row"> <div class="col-md-6 col-xl-6"> <button type="submit" class="btn btn-block btn-alt-primary"> @lang('corals-admin::labels.auth.reset_password') </button> </div> </div> </form> </div> </div> </div> </div> @endsection