{{-- @extends('layouts.app') @section('content')
{{ __('Reset Password') }}
@csrf
{{ __('E-Mail Address') }}
@error('email')
{{ $message }}
@enderror
{{ __('Password') }}
@error('password')
{{ $message }}
@enderror
{{ __('Confirm Password') }}
{{ __('Reset Password') }}
@endsection --}} @extends('layouts.auth.app') @section('content') @if(count($errors) > 0 )
@foreach($errors->all() as $key => $error)
{{$error}}
@endforeach
@endif
@csrf
RESET PASSWORD
EMAIL
PASSWORD
CONFIRM PASSWORD
Reset Password
@endsection @section("scripts") @endsection