@extends('layouts.app') @section('title', __('auth.reset_password')) @section('content')

{{ __('auth.reset_password') }}

{{ __('auth.create_new_password') }}

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@endsection