{{-- Pterodactyl - Panel --}} {{-- Copyright (c) 2015 - 2017 Dane Everitt --}} {{-- This software is licensed under the terms of the MIT license. --}} {{-- https://opensource.org/licenses/MIT --}} @extends('layouts.auth') @section('title') Reset Password @endsection @section('content')
@if (count($errors) > 0)
@lang('auth.auth_error')

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif

@lang('auth.password_requirements')

@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
{!! csrf_field() !!}
@endsection @section('scripts') @parent @if(config('recaptcha.enabled')) @endif @endsection