{{-- 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') Forgot Password @endsection @section('content')
@if (count($errors) > 0)
@lang('auth.auth_error')

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('status'))
@lang('auth.email_sent')
@endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! csrf_field() !!}
@endsection @section('scripts') @parent @if(config('recaptcha.enabled')) @endif @endsection