{{-- @extends('layouts.app', ['class' => 'main-content-has-bg']) @section('content') @include('layouts.headers.guest')

{{ __tr('Reset your password') }}


{{ __tr('Please choose new password and confirm it.') }}
{{ __tr('Confirm') }}
@endsection --}} @extends('layouts.app', ['class' => 'main-content-has-bg']) @section('content') @include('layouts.headers.guest') @php $currentAppTheme = ''; $currentAppTheme = getUserAppTheme(); @endphp

{{ __tr('Reset your password') }}

{{ __tr('Please choose new password and confirm it.') }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{-- @if ($errors->has('password'))
{{ $errors->first('password') }}
@endif --}}
{{-- @if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif --}}
@endsection