@extends('platform::auth') @section('title', __('Forgot your password?')) @section('content')

{{__('Forgot your password?')}}

@csrf @if (session('status')) @endif

{{ __('No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.') }}

{!! \Orchid\Screen\Fields\Input::make('email') ->type('email') ->autofocus() ->autocomplete('email') ->placeholder('Enter your email') ->title('E-Mail Address') !!}
@endsection