@extends('layouts.layout') @section('content')

{{ __('Change Password') }}

@csrf
@if ($errors->has('current-password')) {{ Session::flash('error',$errors->first('current-password')) }} @endif
{{ __('6 Characters Long') }}
@if ($errors->has('new-password')) {{ Session::flash('error',$errors->first('new-password')) }} @endif
{{ __('6 Characters Long') }}
@if ($errors->has('new-password_confirmation')) {{ Session::flash('error',$errors->first('new-password_confirmation')) }} @endif

@endsection