@include('flash::message')
@if ($message = Session::get('success'))
{{ $message }}
@endif
{{ __('users.password_expired') }}
@if (session('error'))
{{ session('error') }}
@endif @if (session('success'))
{{ session('success') }}
@endif @if (session('message'))
{{ session('message') }}
@endif
{{ csrf_field() }}
{{ __('users.current_password') }}
@if ($errors->has('current-password'))
{{ $errors->first('current-password') }}
@endif
{{ __('users.new_password') }}
@if ($errors->has('new-password'))
{{ $errors->first('new-password') }}
@endif
{{ __('users.confirm_new_password') }}
{{ __('users.change_password') }}