@section('content')

{{ trans('main.Change Password') }}

{{ trans('main.Your account requires that you change your password before continuing.') }}

@csrf @method('put')
@if ($errors->has('current_password'))

{{ $errors->first('current_password') }}

@endif
@if ($errors->has('password'))

{{ $errors->first('password') }}

@endif
{{ trans('main.Password must be at least 8 characters long') }}
@if ($errors->has('password_confirmation'))

{{ $errors->first('password_confirmation') }}

@endif
@endsection