@extends('frontend'.(session()->get('display_type') == "rtl"?"-rtl":"").'.layouts.app'.config('theme_layout')) @section('title', app_name() . ' | ' . __('labels.frontend.passwords.reset_password_box_title')) @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session('status'))
{{ session('status') }}
@endif {{ html()->form('POST', route('frontend.auth.password.email.post'))->open() }}
{{ html()->email('email') ->class('form-control') ->placeholder(__('validation.attributes.frontend.email')) ->attribute('maxlength', 191) ->required() ->autofocus() }}
{{ html()->form()->close() }}
@endsection