@extends('layouts.app') @section('title', __('titles.windows.reset_password')) @section('content')
{{ __('titles.pages.reset_password') }}
@csrf
{{ __('labels.email') }} @error('email') @include('includes.shared.context_error', ['message' => $errors->first('email')]) @enderror
{{ __('labels.password') }} @error('password') @include('includes.shared.context_error', ['message' => $errors->first('password')]) @enderror
{{ __('labels.password_rules.length') }}
{{ __('labels.password_rules.lower') }}
{{ __('labels.password_rules.upper') }}
{{ __('labels.password_rules.special') }}
{{ __('labels.password_confirmation') }} @error('password_confirmation') @include('includes.shared.context_error', ['message' => $errors->first('password_confirmation')]) @enderror
{{ __('actions.reset_password') }}
@endsection