@extends('template.layout')
@section('title', 'Lost Account')
@section('submenuItem', 'lostaccount')
@section('content')
@if(isset($lostAccount))
@if($lostAccount instanceof \App\Models\Account)
Email: {{ $emailOrChar }}
@else
Character Name: {{ $emailOrChar }}
@endif
@endif
@if(isset($recoverSuccess))
|
An email with a confirmation key has been sent to your new email address. Note that this confirmation key is only valid for 24 hours.
Click on the link in the email or enter your data below to choose a new password.
|
|
@endif
@endsection