![]() 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/admin-doctors/auth/passwords/ |
@extends('layouts.auth') @section('title','Reset Password') @section('content') <div class="login-right"> <div class="login-right-wrap"> <h1>@lang('admin-doctors::labels.auth.reset_password')</h1> <p class="account-subtitle">@lang('admin-doctors::labels.auth.enter_your_email_to_get_password_link')</p> <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> <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" placeholder="@lang('User::attributes.user.email')" value="{{ old('email', $email) }}"/> <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="form-group has-feedback {{ $errors->has('password') ? ' has-error' : '' }}"> <input type="password" name="password" class="form-control" placeholder="@lang('User::attributes.user.password')"/> <span class="glyphicon glyphicon-lock form-control-feedback"></span> @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" placeholder = "@lang('User::attributes.user.retype_password')"/> <span class="glyphicon glyphicon-lock form-control-feedback"></span> @if ($errors->has('password_confirmation')) <div class="help-block"> <strong>{{ $errors->first('password_confirmation') }}</strong> </div> @endif </div> <div class="form-group mb-0"> <button type="submit" class="btn btn-primary btn-block">@lang('admin-doctors::labels.auth.reset_password')</button> </div> </form> <!-- /Form --> <div class="text-center dont-have"> @lang('admin-doctors::labels.auth.remember_your_password') <a href="{{ url('login') }}">@lang('admin-doctors::labels.auth.login')</a></div> </div> </div> @endsection